Skip to content

Commit

Permalink
Merge pull request #238 from rkoumis/fix-format-jan-2025
Browse files Browse the repository at this point in the history
Ruff wants to add a space here
  • Loading branch information
rkoumis authored Jan 9, 2025
2 parents 1c27293 + 27dae36 commit 8f1ba02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/flowsynth.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def compile_fs():
# write flowsynth data to file
fs_code = str(request.form.get("code"))
hashobj = hashlib.md5()
hashobj.update(f"{fs_code}{random.randint(1,10000)}".encode("utf-8"))
hashobj.update(f"{fs_code}{random.randint(1, 10000)}".encode("utf-8"))
fname = hashobj.hexdigest()[0:15]

inpath = tempfile.mkstemp()[1]
Expand Down

0 comments on commit 8f1ba02

Please sign in to comment.