Skip to content

Commit a198273

Browse files
strosekgirarda
andauthored
chore(python-cdk): remove Path not returned mypy warning (#44433)
Co-authored-by: Alexandre Girard <[email protected]>
1 parent 6b902f5 commit a198273

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte-cdk/python/airbyte_cdk/test/mock_http/response_builder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def build(self) -> HttpResponse:
171171

172172
def _get_unit_test_folder(execution_folder: str) -> FilePath:
173173
# FIXME: This function should be removed after the next CDK release to avoid breaking amazon-seller-partner test code.
174-
return get_unit_test_folder(execution_folder)
174+
return get_unit_test_folder(execution_folder) # type: ignore # get_unit_test_folder is known to return a FilePath
175175

176176

177177
def find_template(resource: str, execution_folder: str) -> Dict[str, Any]:

0 commit comments

Comments
 (0)