diff --git a/swagger_coverage_py/uri.py b/swagger_coverage_py/uri.py index b8a72b9..3e89df8 100644 --- a/swagger_coverage_py/uri.py +++ b/swagger_coverage_py/uri.py @@ -4,5 +4,4 @@ def __init__(self, host: str, base_path, unformatted_path: str, **uri_params): self.formatted = base_path + unformatted_path.format(**uri_params) self.full = f"{self.host}{self.formatted}" self.raw = unformatted_path - self.base_path = base_path self.uri_params: dict = uri_params