Skip to content

Commit

Permalink
fixes linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolfix committed Nov 9, 2024
1 parent b0f928d commit 07da530
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
matrix:
os: [Ubuntu, MacOS, Windows]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
defaults:
run:
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions src/pendulum/tz/local_timezone.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ def _get_unix_timezone(_root: str = "/") -> Timezone:
line = line[match.end() :]
etctz = line[
: cast(
re.Match,
end_re.search(line), # type: ignore[type-arg]
re.Match, # type: ignore[type-arg]
end_re.search(line),
).start()
]

Expand Down

0 comments on commit 07da530

Please sign in to comment.