Nix fmt doesn't complain anymore

This commit is contained in:
2023-10-23 01:30:47 +02:00
parent 7a354875c9
commit f1b66d7996
9 changed files with 60 additions and 57 deletions

View File

@@ -3,11 +3,13 @@ from pathlib import Path
from typing import Any
from pydantic import AnyUrl, BaseModel, validator
from pydantic.tools import parse_obj_as
from ..dirs import clan_data_dir, clan_flakes_dir
from ..flakes.create import DEFAULT_URL
from ..types import validate_path
DEFAULT_URL = parse_obj_as(AnyUrl, "http://localhost:8000")
log = logging.getLogger(__name__)