Skip to content

Commit

Permalink
Fix double assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Jan 4, 2025
1 parent 2ec0146 commit a5036f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hid_devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class FilterDict(TypedDict):
# TODO: https://github.com/mypyc/mypyc/issues/700
FILTERS_PATH = Path(".") / "filters" # Path(__file__).parent
REPORT_ID_PATTERN = re.compile(r"(a10185)(..)")
SDP_TEMPLATE_PATH = SDP_TEMPLATE_PATH = Path("sdp_record_template.xml") # Path(__file__).with_name("sdp_record_template.xml")
SDP_TEMPLATE_PATH = Path("sdp_record_template.xml") # Path(__file__).with_name("sdp_record_template.xml")
SDP_OUTPUT_PATH = Path("/etc/bluetooth/sdp_record.xml")

FILTERS: dict[str, FilterDict] = {"_": {"name": "No filter", "func": lambda m: m}}
Expand Down

0 comments on commit a5036f4

Please sign in to comment.