From 9b52796f793aa1d01ace9937eee6ad88dd0f5abd Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 7 Dec 2023 21:57:34 +0100 Subject: [PATCH] add BaseUrl docstring --- pytest_abra/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pytest_abra/utils.py b/pytest_abra/utils.py index b820416..e6becf3 100644 --- a/pytest_abra/utils.py +++ b/pytest_abra/utils.py @@ -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 = ""