Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SeisSerenata committed May 25, 2024
1 parent 42ce4f9 commit e9cddfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions any_parser/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
CAMBIO_PARSE_URL = (
"https://qreije6m7l.execute-api.us-west-2.amazonaws.com/v1/cambio_api/parse"
)
COMBIO_INSTRUCT_URL = (
CAMBIO_INSTRUCT_URL = (
"https://qreije6m7l.execute-api.us-west-2.amazonaws.com/v1/cambio_api/instruction"
)

Expand All @@ -21,7 +21,7 @@ def __init__(self, apiKey) -> None:
self._uploadurl = CAMBIO_UPLOAD_URL
self._extracturl = CAMBIO_EXTRACT_URL
self._parseurl = CAMBIO_PARSE_URL
self._instructurl = COMBIO_INSTRUCT_URL
self._instructurl = CAMBIO_INSTRUCT_URL
self._request_header = {"x-api-key": apiKey}

def setAPIKey(self, apiKey):
Expand Down

0 comments on commit e9cddfe

Please sign in to comment.