From c248e338a1d6b34200608ef613a532294153982e Mon Sep 17 00:00:00 2001 From: Torrin Leonard <82110564+torrinworx@users.noreply.github.com> Date: Thu, 30 Dec 2021 22:53:23 -0500 Subject: [PATCH] Revert "Merge pull request #40 from Talha345/linux_file_path" This reverts commit 08af65f1fbae41402a02040fce4d5dfa656e7271, reversing changes made to 320e37b0f5f0030b1a7d222811d390c0c9e368bc. --- src/config.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/config.py b/src/config.py index 4ab0dde..e9a2923 100644 --- a/src/config.py +++ b/src/config.py @@ -32,11 +32,9 @@ modelFileFormat = '' # The file format of the objects you would like to export # The path to Blend_My_NFTs folder: save_path_mac = '' -save_path_linux = '' save_path_windows = r'' # Place the path in the '', e.g: save_path_mac = '/Users/Path/to/Blend_My_NFTs' # Example mac: /Users/Path/to/Blend_My_NFTs -# Example linux: /Users/Path/to/Blend_My_NFTs # Example windows: C:\Users\Path\to\Blend_My_NFTs maxNFTs = 0 # The maximum number of NFTs you want to generate. @@ -144,7 +142,6 @@ checkRarity = False import platform mac = 'Darwin' -linux = 'Linux' windows = 'Windows' slash = '' save_path = None @@ -153,9 +150,6 @@ save_path = None if platform.system() == mac: save_path = save_path_mac slash = '/' -elif platform.system() == linux: - save_path = save_path_linux - slash = '/' elif platform.system() == windows: save_path = save_path_windows slash = '\\'