Skip to content

Commit

Permalink
style(pre-commit.ci): auto fixes from pre-commit hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 14, 2025
1 parent a492bc7 commit 0db80b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion basilisk/config/account_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ class Account(BaseModel):
organizations: Optional[list[AccountOrganization]] = Field(default=None)
active_organization_id: Optional[UUID4] = Field(default=None)
source: AccountSource = Field(default=AccountSource.CONFIG, exclude=True)
custom_base_url: Optional[str] = Field(default=None, pattern="^https?://[\\w.-]+(?::\\d+)?(?:/[\\w.-]*)*/?$")
custom_base_url: Optional[str] = Field(
default=None, pattern="^https?://[\\w.-]+(?::\\d+)?(?:/[\\w.-]*)*/?$"
)

def __init__(self, **data: Any):
try:
Expand Down

0 comments on commit 0db80b8

Please sign in to comment.