Skip to content

Commit

Permalink
removed string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ashthecoder05 committed May 31, 2023
1 parent 4db77bc commit 5a9150d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blockonomics.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def _get_history_for_addresses(self, addresses: list) -> dict:
api_key = configloader.user_cfg["Bitcoin"]["api_key"]

url = "https://www.blockonomics.co/api/merchant_logs"
body = {"match_callback": f"{Blockonomics._get_secret()}"}
body = {"match_callback": Blockonomics._get_secret()}
headers = { "Authorization": "Bearer %s" % api_key }

r = requests.get(
Expand Down

0 comments on commit 5a9150d

Please sign in to comment.