mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 21:02:38 +00:00
Indents were messed up from the paste
This commit is contained in:
parent
ab6763f578
commit
38329fc8d7
1 changed files with 5 additions and 5 deletions
|
@ -41,15 +41,15 @@ def setdefault(filename, default=None, json=False):
|
|||
if json:
|
||||
try:
|
||||
with open(filename, 'rb') as infile:
|
||||
print(f'LOADED : {filename}')
|
||||
return jsn.load(infile)
|
||||
print(f'LOADED : {filename}')
|
||||
return jsn.load(infile)
|
||||
|
||||
except FileNotFoundError:
|
||||
with open(filename, 'wb+') as iofile:
|
||||
print(f'FILE NOT FOUND : {filename} created and loaded with default values')
|
||||
jsn.dump(default, iofile)
|
||||
print(f'FILE NOT FOUND : {filename} created and loaded with default values')
|
||||
jsn.dump(default, iofile)
|
||||
iofile.seek(0)
|
||||
return jsn.load(iofile)
|
||||
return jsn.load(iofile)
|
||||
else:
|
||||
try:
|
||||
with open(filename, 'rb') as infile:
|
||||
|
|
Loading…
Reference in a new issue