Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fformica committed Nov 15, 2024
1 parent b8c6cd0 commit 604c527
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/redirect.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
query_forwarding=False,
forwarding_mode="all",
forwarding_type="permanent",
tags=["test","me"],
tags=["test", "me"],
)

##########
Expand All @@ -68,10 +68,10 @@

# search; we can also use list() to get all redirects
reds = redirects.searchSource('example.com')
print (reds['total'], len(reds['results']))
print(reds['total'], len(reds['results']))

certs = certificates.search('example.com')
print (certs['total'], len(certs['results']))
print(certs['total'], len(certs['results']))

#################
# READ / UPDATE #
Expand Down

0 comments on commit 604c527

Please sign in to comment.