Skip to content

Commit

Permalink
silence flake8 F811 for BaseCLIResponse.command
Browse files Browse the repository at this point in the history
  • Loading branch information
deronnax committed Jan 27, 2024
1 parent 2850eae commit a6248e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class BaseCLIResponse:
complete_args: List[str] = []

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

0 comments on commit a6248e5

Please sign in to comment.