Skip to content

Commit

Permalink
renamed to not conflict with psutil searching for noita
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgillij committed Feb 27, 2021
1 parent 6bb7eca commit 7599e98
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 5 deletions.
100 changes: 99 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "noita_save_manager"
name = "save_manager"
version = "0.1.0"
description = "Noita Save Manager, allows for backup and restoring of save files"
authors = ["mcgillij <[email protected]>"]
Expand All @@ -24,7 +24,7 @@ classifiers = [
include = [ "LICENSE", ]

[tool.poetry.scripts]
noita_save_manager = 'noita_save_manager.noita_save_manager:main'
save_manager = 'save_manager.save_manager:main'

[tool.poetry.dependencies]
python = "^3.9"
Expand All @@ -35,6 +35,7 @@ psutil = "^5.8.0"
pylint = "^2.7.1"
flake8 = "^3.8.4"
black = "^20.8b1"
pyinstaller = "^4.2"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
import PySimpleGUI as sg

SAVE_DIR = "save00"

DEBUG = True
# sg Debug window
if os.environ.get("DEBUG"):
if os.environ.get("DEBUG") or DEBUG:
print = sg.Print


Expand Down

0 comments on commit 7599e98

Please sign in to comment.