Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 1, 2025
1 parent c20d352 commit 323825e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyflp/_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def __init__(self, id: EventEnum, data: bytes, **kwds: Any) -> None:
if len(data) != expected_size:
raise InvalidEventChunkSize(expected_size, len(data))

# Conditional fix for Windows with Python 3.13+
# Conditional fix for Windows with Python 3.13+
if platform.system() == "Windows" and sys.version_info >= (3, 13):
self.id = id # Apply workaround for affected environments
else:
Expand Down

0 comments on commit 323825e

Please sign in to comment.