Skip to content

Commit 987b083

Browse files
committed
invalid-explicit-override
1 parent f67e097 commit 987b083

2 files changed

Lines changed: 0 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,6 @@ call-non-callable = "ignore"
301301
invalid-argument-type = "ignore"
302302
unresolved-attribute = "ignore"
303303
not-iterable = "ignore"
304-
invalid-explicit-override = "ignore"
305304
non-subscriptable = "ignore"
306305
invalid-return-type = "ignore"
307306
unresolved-import = "ignore"

src/runloop_api_client/_models.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ class BaseModel(pydantic.BaseModel):
8585
if PYDANTIC_V1:
8686

8787
@property
88-
@override
8988
def model_fields_set(self) -> set[str]:
9089
# a forwards-compat shim for pydantic v2
9190
return self.__fields_set__ # type: ignore
@@ -250,7 +249,6 @@ def construct( # pyright: ignore[reportIncompatibleMethodOverride]
250249
# a specific pydantic version as some users may not know which
251250
# pydantic version they are currently using
252251

253-
@override
254252
def model_dump(
255253
self,
256254
*,
@@ -321,7 +319,6 @@ def model_dump(
321319

322320
return cast("dict[str, Any]", json_safe(dumped)) if mode == "json" else dumped
323321

324-
@override
325322
def model_dump_json(
326323
self,
327324
*,

0 commit comments

Comments
 (0)