add BaseUrl docstring

This commit is contained in:
Daniel 2023-12-07 21:57:34 +01:00
parent 3e2aa88a09
commit 9b52796f79

View file

@ -6,6 +6,8 @@ from urllib.parse import urlunparse
@dataclass
class BaseUrl:
"""utility class to create a url string with urllib"""
netloc: str
scheme: str = "https"
path: str = ""