Skip to content

Commit 52dcdab

Browse files
committed
Run black
1 parent 08d5725 commit 52dcdab

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

example/example_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def example_get_service_filter_plugin():
2323
"""
2424
query_http_ntlm = MustQuery(field=PluginField(Plugin.HttpNTLM))
2525
response = CLIENT.get_service(queries=[query_http_ntlm])
26-
assert response.status_code() == 200,response.status_code()
26+
assert response.status_code() == 200, response.status_code()
2727
# check we only get NTML related services
2828
assert all((i.tags == ["ntlm"] for i in response.json()))
2929

leakix/client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ class HostResult(Model):
2626

2727

2828
DEFAULT_URL = "https://leakix.net"
29+
30+
2931
class Client:
3032
MAX_RESULTS_PER_PAGE = 20
3133

0 commit comments

Comments
 (0)