Skip to content

Commit

Permalink
mypy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
andgineer committed Sep 5, 2021
1 parent ecbf673 commit 7de5ecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bombard/bombardier.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def process_resp(self, ammo: Dict[str, Any], status: int, resp: str, elapsed: in
)

@staticmethod
def beautify_url(url, method, body):
def beautify_url(url, method, body): # pylint: disable=unused-argument
urlparts = urlparse(url)
path = urlparts.path if len(urlparts.path) < 15 else "..." + urlparts.path[-15:]
query = "?" + urlparts.query if urlparts.query else ""
Expand Down

0 comments on commit 7de5ecb

Please sign in to comment.