128-revival-add-more-tests#132
Conversation
| # ----------------------------------------- | ||
| @staticmethod | ||
| def Autocomplete(**kwargs)->Autocomplete: | ||
| def Autocomplete(**kwargs) -> Autocomplete: |
There was a problem hiding this comment.
🚫 [mypy] reported by reviewdog 🐶
Function is missing a type annotation for one or more arguments [no-untyped-def]
|
|
||
| @staticmethod | ||
| def Compound(**kwargs)->Compound: | ||
| def Compound(**kwargs) -> Compound: |
There was a problem hiding this comment.
🚫 [mypy] reported by reviewdog 🐶
Function is missing a type annotation for one or more arguments [no-untyped-def]
|
|
||
| @staticmethod | ||
| def Equals(**kwargs)->Equals: | ||
| def Equals(**kwargs) -> Equals: |
There was a problem hiding this comment.
🚫 [mypy] reported by reviewdog 🐶
Function is missing a type annotation for one or more arguments [no-untyped-def]
|
|
||
| @staticmethod | ||
| def Exists(**kwargs)->Exists: | ||
| def Exists(**kwargs) -> Exists: |
There was a problem hiding this comment.
🚫 [mypy] reported by reviewdog 🐶
Function is missing a type annotation for one or more arguments [no-untyped-def]
|
|
||
| @staticmethod | ||
| def Facet(**kwargs)->Facet: | ||
| def Facet(**kwargs) -> Facet: |
There was a problem hiding this comment.
🚫 [mypy] reported by reviewdog 🐶
Function is missing a type annotation for one or more arguments [no-untyped-def]
|
|
||
| @staticmethod | ||
| def Regex(**kwargs)->Regex: | ||
| def Regex(**kwargs) -> Regex: |
There was a problem hiding this comment.
🚫 [mypy] reported by reviewdog 🐶
Function is missing a type annotation for one or more arguments [no-untyped-def]
|
|
||
| @staticmethod | ||
| def Text(**kwargs)->Text: | ||
| def Text(**kwargs) -> Text: |
There was a problem hiding this comment.
🚫 [mypy] reported by reviewdog 🐶
Function is missing a type annotation for one or more arguments [no-untyped-def]
|
|
||
| @staticmethod | ||
| def Wildcard(**kwargs)->Wildcard: | ||
| def Wildcard(**kwargs) -> Wildcard: |
There was a problem hiding this comment.
🚫 [mypy] reported by reviewdog 🐶
Function is missing a type annotation for one or more arguments [no-untyped-def]
| filter: list[AnyOperator] = [], | ||
| minimum_should_match: int = 0, | ||
| **kwargs: Any, | ||
| ) -> Compound: |
There was a problem hiding this comment.
🚫 [mypy] reported by reviewdog 🐶
Function "src.monggregate.stages.search.base.SearchBase.Compound" is not valid as a type [valid-type]
| filter: list[AnyOperator] = [], | ||
| minimum_should_match: int = 0, | ||
| **kwargs: Any, | ||
| ) -> Compound: |
There was a problem hiding this comment.
📝 [mypy] reported by reviewdog 🐶
Perhaps you need "Callable[...]" or a callback protocol?
| import os | ||
| from pathlib import Path | ||
|
|
||
| import pytest |
There was a problem hiding this comment.
[Ruff] reported by reviewdog 🐶
F401 [*] pytest imported but unused
No description provided.