Skip to content

Commit

Permalink
style: fix line length
Browse files Browse the repository at this point in the history
Signed-off-by: Ariel Gentile <[email protected]>
  • Loading branch information
genaris committed Jul 9, 2024
1 parent 4dd91fe commit dcee226
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion oidc-controller/api/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,8 @@ class GlobalConfig(BaseSettings):
os.environ.get("USE_OOB_LOCAL_DID_SERVICE", True)
)
USE_URL_DEEP_LINK: bool = strtobool(os.environ.get("USE_URL_DEEP_LINK", False))
WALLET_DEEP_LINK_URI_SCHEME: str = os.environ.get("WALLET_DEEP_LINK_URI_SCHEME", "bcwallet")
WALLET_DEEP_LINK_URI_SCHEME: str = os.environ.get("WALLET_DEEP_LINK_URI_SCHEME",
"bcwallet")
SET_NON_REVOKED: bool = strtobool(os.environ.get("SET_NON_REVOKED", True))

model_config = ConfigDict(case_sensitive=True)
Expand Down

0 comments on commit dcee226

Please sign in to comment.