From 4908de3075ef30fdbaf710e564d6548a096757ff Mon Sep 17 00:00:00 2001 From: Spencer Phillip Young Date: Wed, 3 May 2023 18:24:44 -0700 Subject: [PATCH] don't format removals tests --- tests/data/async/removals.py | 1 + tests/data/sync/removals.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/data/async/removals.py b/tests/data/async/removals.py index 1237fae..3a59d3e 100644 --- a/tests/data/async/removals.py +++ b/tests/data/async/removals.py @@ -35,3 +35,4 @@ async def another_method(self): print('This line should stick around') await self.something("the content in this line should be removed") # unasync: remove +# fmt: on diff --git a/tests/data/sync/removals.py b/tests/data/sync/removals.py index 2c0608c..ff79ad6 100644 --- a/tests/data/sync/removals.py +++ b/tests/data/sync/removals.py @@ -22,3 +22,4 @@ def foobar(self): def another_method(self): print('This line should stick around') +# fmt: on