Skip to content

Commit b0fac3c

Browse files
committed
Capitalized the first character of the folder names. Renamed shared_globals to shared-globals.
1 parent 13e5215 commit b0fac3c

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
input/*
2-
!input/.empty
3-
output/*
4-
!output/.empty
5-
example_legacy_mods
1+
Input/*
2+
!Input/.empty
3+
Output/*
4+
!Output/.empty
5+
ExampleLegacyMods
66
__pycache__
77
build
88
dist

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from python import gui
1+
from Python import gui
22

33
gui.init_window_theme()
44
gui.run_window(gui.init_window())

python/convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os, time, pathlib, shutil, math, re, sys, shutil, zipfile, json
22
from jsoncomment import JsonComment
33
from playsound import playsound
4-
from python import shared_globals as cfg
4+
from Python import shared_globals as cfg
55

66

77
finishSoundPath = "media/finish.wav"

python/gui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import os.path, pathlib, webbrowser
55
import PySimpleGUI as sg
6-
from python import shared_globals as cfg
7-
from python import convert
6+
from Python import shared_globals as cfg
7+
from Python import convert
88

99

1010
sg.user_settings_filename(filename="settings.json", path=".")
File renamed without changes.

0 commit comments

Comments
 (0)