Skip to content

Commit

Permalink
Format code with black (bot)
Browse files Browse the repository at this point in the history
  • Loading branch information
manoskary committed Jan 10, 2025
1 parent 31faf74 commit 356429d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion partitura/io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def load_score(filename: PathLike, force_note_ids="keep") -> Score:
temp_file = tempfile.NamedTemporaryFile(suffix=extension, delete=True)

# Write the content to the temporary file
with open(temp_file.name, 'wb') as f:
with open(temp_file.name, "wb") as f:
f.write(data)

filename = temp_file.name
Expand Down

0 comments on commit 356429d

Please sign in to comment.