Skip to content

Commit cbaa102

Browse files
committed
Remove useless changes
1 parent f0aa105 commit cbaa102

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/openapi_parser/builders/content.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def build_list(self, data: dict) -> list[Content]:
2828
in data.items()
2929
]
3030

31-
def _create_content(self, content_type: str, schema: dict, example: Any, examples: list) -> Content:
31+
def _create_content(self, content_type: str, schema: dict, example: Any, examples: dict) -> Content:
3232
logger.debug(f"Content building [type={content_type}]")
3333
ContentTypeCls: ContentTypeType = ContentType if self.strict_enum else LooseContentType
3434
return Content(

tests/openapi_fixture.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
)
104104
),
105105
],
106-
),
106+
)
107107
),
108108
],
109109
)
@@ -136,7 +136,7 @@
136136
)
137137
),
138138
],
139-
),
139+
)
140140
),
141141
],
142142
)

0 commit comments

Comments
 (0)