Skip to content

Commit 7021e47

Browse files
author
matmoncon
committed
chore: fixed linting/type checking
1 parent 6f4a9d9 commit 7021e47

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyneo4j_ogm/fields/property_options.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __new__(cls, *args, **kwargs):
4848
if IS_PYDANTIC_V2:
4949

5050
@classmethod
51-
def __get_pydantic_core_schema__(cls, _: Any, handler: GetCoreSchemaHandler) -> CoreSchema:
52-
return handler(property_type)
51+
def __get_pydantic_core_schema__(cls, _: Any, handler: GetCoreSchemaHandler) -> CoreSchema: # type: ignore
52+
return handler(property_type) # type: ignore
5353

5454
return PropertyWithOptions

pyneo4j_ogm/queries/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class RelationshipMatchDirection(str, Enum):
3939
)
4040

4141
NumericNotEqualsOperator = TypedDict(
42-
"NumericEqualsOperator",
42+
"NumericNotEqualsOperator",
4343
{
4444
"$neq": NumericQueryDataType,
4545
},

0 commit comments

Comments
 (0)