Skip to content

Commit

Permalink
chore: remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
sirtawast committed Jun 24, 2024
1 parent f02c390 commit 13602d8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions backend/shared/shared/helsinki_profile/hp_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,7 @@ def get_profile(self, oidc_access_token):
verify=True,
headers={"Authorization": "Bearer " + api_access_token},
)
print(response)
response.raise_for_status()
print("get profile: ", response.json())
except RequestException as e:
raise HelsinkiProfileException(str(e))

Expand Down Expand Up @@ -136,7 +134,7 @@ def get_api_access_token_tunnistus(self, oidc_access_token):
)
response.raise_for_status()
data = response.json()
print(data)

except RequestException as e:
raise HelsinkiProfileException(str(e))

Expand Down

0 comments on commit 13602d8

Please sign in to comment.