Skip to content

Commit

Permalink
Remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
akonarski-ds committed Sep 24, 2024
1 parent 6b0c604 commit b4131f1
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ def client(self) -> UnstructuredClient:
if self._client is not None:
return self._client
if (api_key := os.getenv(UNSTRUCTURED_API_KEY_ENV)) is None:
print(api_key)
print("I should raise here")
raise ValueError(f"{UNSTRUCTURED_API_KEY_ENV} environment variable is not set")
if (server_url := os.getenv(UNSTRUCTURED_SERVER_URL_ENV)) is None:
raise ValueError(f"{UNSTRUCTURED_SERVER_URL_ENV} environment variable is not set")
Expand Down

0 comments on commit b4131f1

Please sign in to comment.