Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "utcp"
version = "0.2.1"
version = "0.2.2"
authors = [
{ name = "Razvan-Ion Radulescu" },
{ name = "Andrei-Stefan Ghiurtu" },
Expand Down
1 change: 1 addition & 0 deletions src/utcp/client/openapi_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def _resolve_ref(self, ref: str) -> Dict[str, Any]:

def _resolve_schema(self, schema: Dict[str, Any]) -> Dict[str, Any]:
"""Recursively resolves all $refs in a schema object."""
return schema
if isinstance(schema, dict):
if "$ref" in schema:
resolved_ref = self._resolve_ref(schema["$ref"])
Expand Down
2 changes: 1 addition & 1 deletion src/utcp/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import tomli
from pathlib import Path

__version__ = "0.2.1"
__version__ = "0.2.2"
try:
__version__ = version("utcp")
except PackageNotFoundError:
Expand Down
Loading