Fix comparison constant position (#145)

* Fix comparison constant position

* format with black

Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Co-authored-by: Akash Mahanty <akamhy@yahoo.com>
This commit is contained in:
deepsource-autofix[bot]
2022-02-08 10:06:23 +05:30
committed by GitHub
parent 0b631592ea
commit e0dfbe0b7d
2 changed files with 10 additions and 8 deletions

View File

@@ -99,7 +99,7 @@ def test_no_api_call_str_repr() -> None:
availability_api = WaybackMachineAvailabilityAPI(
url=f"https://{rndstr(30)}.gov", user_agent=user_agent
)
assert "" == str(availability_api)
assert str(availability_api) == ""
def test_no_call_timestamp() -> None: