Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Nov 9, 2024
1 parent bb06057 commit 9ab674c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Tests/test_file_jxl_animated.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ def test_seeking() -> None:
assert im1.info["timestamp"] == im1.info["timestamp"]
assert total_dur == 8000

assert im1.tell() == 0 and im2.tell() == 0
assert im1.tell() == 0
assert im2.tell() == 0

im1.seek(0)
im1.load()
Expand Down
2 changes: 0 additions & 2 deletions src/PIL/_jpegxl.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from __future__ import annotations

from typing import Any

def __getattr__(name: str) -> Any: ...

0 comments on commit 9ab674c

Please sign in to comment.