Skip to content

Commit 7914a37

Browse files
committed
Fix mypy issue
1 parent 205bb60 commit 7914a37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/truefoundry_sdk/_wrapped_clients.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def _get_by_fqn(client: HasListMethod[T, R], *, fqn: str, request_options: Optio
4848
raise NotFoundError(
4949
body=HttpError(
5050
message=f"No entity found with fqn {fqn}",
51-
status_code=404,
51+
statusCode=404,
5252
)
5353
)
5454
return result
@@ -67,7 +67,7 @@ async def _aget_by_fqn(
6767
raise NotFoundError(
6868
body=HttpError(
6969
message=f"No entity found with fqn {fqn}",
70-
status_code=404,
70+
statusCode=404,
7171
)
7272
)
7373
return result

0 commit comments

Comments
 (0)