Skip to content

Commit 36b40f7

Browse files
authored
Merge pull request #7637 from radarhere/fuzz
Moved __future__ import to beginning of file
2 parents f8e65ec + 7b9d101 commit 36b40f7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Tests/oss-fuzz/fuzz_font.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/python3
22

3+
from __future__ import annotations
4+
35
# Copyright 2020 Google LLC
46
#
57
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +15,6 @@
1315
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1416
# See the License for the specific language governing permissions and
1517
# limitations under the License.
16-
from __future__ import annotations
1718

1819

1920
import atheris

Tests/oss-fuzz/fuzz_pillow.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/python3
22

3+
from __future__ import annotations
4+
35
# Copyright 2020 Google LLC
46
#
57
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -13,7 +15,6 @@
1315
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1416
# See the License for the specific language governing permissions and
1517
# limitations under the License.
16-
from __future__ import annotations
1718

1819

1920
import atheris

0 commit comments

Comments
 (0)