Skip to content

Commit 1b2a7c9

Browse files
deronnaxMathieu Dupuy
authored and
Mathieu Dupuy
committed
silence flake8 F811 for BaseCLIResponse.command
1 parent 2850eae commit 1b2a7c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/utils/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def cleanup(self):
189189
pass
190190

191191

192-
class BaseCLIResponse:
192+
class π:
193193
"""
194194
Represents the result of simulated `$ http' invocation via `http()`.
195195
@@ -210,7 +210,7 @@ class BaseCLIResponse:
210210
complete_args: List[str] = []
211211

212212
@property
213-
def command(self):
213+
def command(self): # noqa: F811
214214
cmd = ' '.join(shlex.quote(arg) for arg in ['http', *self.args])
215215
# pytest-httpbin to real httpbin.
216216
return re.sub(r'127\.0\.0\.1:\d+', 'httpbin.org', cmd)

0 commit comments

Comments
 (0)