Skip to content

Commit 310be18

Browse files
authored
Merge pull request #35 from breakpointforensics/main
Update __init__.py for settings json output
2 parents a8f904a + d3a6642 commit 310be18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FreeSimpleGUI/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12557,7 +12557,7 @@ def save(self, filename=None, path=None):
1255712557
os.makedirs(self.path)
1255812558
with open(self.full_filename, 'w') as f:
1255912559
if not self.use_config_file:
12560-
json.dump(self.dict, f)
12560+
json.dump(self.dict, f, indent=4)
1256112561
else:
1256212562
self.config.write(f)
1256312563
except Exception as e:

0 commit comments

Comments
 (0)