Skip to content

Commit

Permalink
Run black and flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
henges committed Jan 5, 2025
1 parent 300198a commit 82c592b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hagadias/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
"o": (241, 95, 34),
"O": (233, 159, 16),
"transparent": (15, 59, 58, 0),
"#": (15, 59, 58, 0), # HACK HACK HACK
"#": (15, 59, 58, 0), # HACK HACK HACK
}
QUD_VIRIDIAN = (15, 59, 58, 255) # 0f3b3a
LIQUID_COLORS = {
Expand Down
2 changes: 1 addition & 1 deletion hagadias/gameroot.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def get_object_tree(self, cls=QudObjectProps):
log.debug("Repairing invalid XML line breaks... ")
contents = repair_invalid_linebreaks(contents)
log.debug("done in %.2f seconds", time.time() - start)
raw = et.fromstring(bytes(contents, encoding='utf-8'))
raw = et.fromstring(bytes(contents, encoding="utf-8"))
# Objects must receive the qindex and add themselves, rather than doing it here, because
# they need access to their parent by name lookup during creation for inheritance
# calculations.
Expand Down

0 comments on commit 82c592b

Please sign in to comment.