Skip to content

Commit

Permalink
Code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeikobelev committed Dec 18, 2023
1 parent ebbb042 commit 5bf49ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sportorg/modules/recovery/recovery_sportorg_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ def recovery(file_name):
# save json to tmp file and op[en with standard import action
tmp_filename = os.path.join(
gettempdir(),
'sportorg_' + ''.join(choices(string.ascii_letters, k=10)) + '.json',
'sportorg_'
+ ''.join(choices(string.ascii_letters, k=10))
+ '.json',
)
temp_file = open(tmp_filename, 'w')
temp_file.write(json)
Expand Down

0 comments on commit 5bf49ab

Please sign in to comment.