Skip to content

Commit 07da530

Browse files
committed
fixes linting
1 parent b0f928d commit 07da530

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
matrix:
3535
os: [Ubuntu, MacOS, Windows]
36-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
36+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
3737
defaults:
3838
run:
3939
shell: bash

src/pendulum/tz/local_timezone.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ def _get_unix_timezone(_root: str = "/") -> Timezone:
206206
line = line[match.end() :]
207207
etctz = line[
208208
: cast(
209-
re.Match,
210-
end_re.search(line), # type: ignore[type-arg]
209+
re.Match, # type: ignore[type-arg]
210+
end_re.search(line),
211211
).start()
212212
]
213213

0 commit comments

Comments
 (0)