Skip to content

Commit 8ffe3a2

Browse files
committed
🐛 Fix Endpoints initialization
1 parent 911542f commit 8ffe3a2

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

python_jobs/src/hbnmigration/utility_functions/datatypes.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,10 @@
66
class Endpoints(ABC):
77
"""Class to store Endpoints."""
88

9-
base_url: str
9+
_base_url: str
10+
"""Base URL."""
11+
12+
@property
13+
def base_url(self) -> str:
14+
"""Return base URL."""
15+
return self._base_url

0 commit comments

Comments
 (0)