Removed __future__ import from fuzz_font and fuzz_pillow

This commit is contained in:
Andrew Murray 2023-12-29 11:23:34 +11:00
parent 78b96c0375
commit a5e42107ea
3 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,5 @@
#!/usr/bin/python3
from __future__ import annotations
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");

View File

@ -1,7 +1,5 @@
#!/usr/bin/python3
from __future__ import annotations
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");

View File

@ -117,6 +117,8 @@ extend-ignore = [
[tool.ruff.per-file-ignores]
"Tests/*.py" = ["I001"]
"Tests/oss-fuzz/fuzz_font.py" = ["I002"]
"Tests/oss-fuzz/fuzz_pillow.py" = ["I002"]
[tool.ruff.isort]
known-first-party = ["PIL"]