Skip to content

Commit

Permalink
Run linter and formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschz committed Jan 26, 2025
1 parent 9a5a3ea commit 2640dbc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
1 change: 0 additions & 1 deletion reccmp/isledecomp/compare/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,6 @@ def set_function_pair(self, orig: int, recomp: int) -> bool:
"""For lineref match or _entry"""
return self.set_pair(orig, recomp, EntityType.FUNCTION)


def set_function_pair_tentative(self, orig: int, recomp: int) -> bool:
"""For lineref match or _entry"""
return self.set_pair_tentative(orig, recomp, EntityType.FUNCTION)
Expand Down
9 changes: 6 additions & 3 deletions reccmp/isledecomp/cvdump/symbols.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,12 @@ class CvdumpSymbolsParser:
r'\*\* Module: "(?P<module>[^"]+)"(?: from "(?P<from>[^"]+)")?$'
)

_compile_key_value = re.compile(
r"\s{9}(?P<key>[^:]+):\s(?P<value>.+)$"
)
_compile_key_value = re.compile(r"\s{9}(?P<key>[^:]+):\s(?P<value>.+)$")
"""
For lines like
` Target processor: 80486`
within an `S_COMPILE` symbol.
"""

_flags_frame_pointer_regex = re.compile(r"\s*Flags: Frame Ptr Present$")

Expand Down

0 comments on commit 2640dbc

Please sign in to comment.