Skip to content

Commit b8e0784

Browse files
committed
Reformat code after updating pre-commit hooks
1 parent 19d8740 commit b8e0784

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

autoflake.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2121
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
"""Removes unused imports and unused variables as reported by pyflakes."""
23+
2324
from __future__ import annotations
2425

2526
import ast

test_autoflake.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env python
22
"""Test suite for autoflake."""
3+
34
from __future__ import annotations
45

56
import contextlib
@@ -33,7 +34,6 @@
3334

3435

3536
class UnitTests(unittest.TestCase):
36-
3737
"""Unit tests."""
3838

3939
def test_imports(self) -> None:
@@ -2005,7 +2005,6 @@ def test_exclude(self) -> None:
20052005

20062006

20072007
class SystemTests(unittest.TestCase):
2008-
20092008
"""System tests."""
20102009

20112010
def test_skip_file(self) -> None:
@@ -3611,7 +3610,6 @@ def temporary_directory(directory: str = ".", prefix: str = "tmp.") -> Iterator[
36113610

36123611

36133612
class StubFile:
3614-
36153613
"""Fake file that ignores everything."""
36163614

36173615
def write(*_: Any) -> None:

test_fuzz.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
done by doing a syntax check after the autoflake run. The number of
66
Pyflakes warnings is also confirmed to always improve.
77
"""
8+
89
from __future__ import annotations
910

1011
import argparse

0 commit comments

Comments
 (0)