Skip to content

Commit

Permalink
🐛 Remove default=None from discovery endpoint in setup-config model
Browse files Browse the repository at this point in the history
this field is not nullable, so it did not make sense to have that default
  • Loading branch information
stevenbal committed Jan 23, 2025
1 parent a635922 commit 055e180
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion mozilla_django_oidc_db/setup_configuration/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ class OIDCDiscoveryEndpoint(ConfigurationModel):
oidc_op_discovery_endpoint: AnyUrl = DjangoModelRef(
OpenIDConnectConfig,
"oidc_op_discovery_endpoint",
default=None,
examples=[f"{EXAMPLE_REALM}/"],
)

Expand Down

0 comments on commit 055e180

Please sign in to comment.