Skip to content

Commit

Permalink
Removed formatting of the output for file size
Browse files Browse the repository at this point in the history
  • Loading branch information
kruemmelbande committed Jan 11, 2023
1 parent 184c92e commit 8cdd8fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions beatTrainerCore.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ def convertLoaded(difficulty,saveLocation):
with open(saveLocation+"/Info.dat","w") as f:
json.dump(newInfo,f,indent=2)
with open(saveLocation+"/StandartEasy.dat","w") as f:
json.dump(easy,f)
json.dump(easy,f,separators=(',', ':'))
with open(saveLocation+"/StandartNormal.dat","w") as f:
json.dump(normal,f)
json.dump(normal,f,separators=(',', ':'))
with open(saveLocation+"/"+newInfo["_songFilename"], "wb") as f:
f.write(song.read())
with open(saveLocation+"/"+newInfo["_coverImageFilename"], "wb") as f:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pygame
PIL
pillow

0 comments on commit 8cdd8fc

Please sign in to comment.