Skip to content

Commit

Permalink
Merge branch 'auth-link-without-ansi-color' into 'main'
Browse files Browse the repository at this point in the history
Authentication link without ANSI color

See merge request cdos-pub/dinamis-sdk!26
  • Loading branch information
Cresson Remi committed Nov 23, 2024
2 parents 63847a6 + 099a764 commit 79f7012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dinamis_sdk/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def get_first_token(self) -> JWT:
response = DeviceGrantResponse(**ret.json())
verif_url_comp = response.verification_uri_complete
log.info("Open the following URL in your browser to grant access:")
log.info("\033[92m%s\033[0m", verif_url_comp)
log.info("\033[92m %s \033[0m", verif_url_comp)

# QR code
qr_code = qrcode.QRCode()
Expand Down

0 comments on commit 79f7012

Please sign in to comment.