Skip to content

Commit

Permalink
Remove 0 default and update pyright version
Browse files Browse the repository at this point in the history
  • Loading branch information
hamdanal committed Dec 31, 2023
1 parent 0dff2d6 commit ce82005
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pandas-stubs/_typing.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ class SequenceNotStr(Protocol[_T_co]):
def __contains__(self, value: object, /) -> bool: ...
def __len__(self) -> int: ...
def __iter__(self) -> Iterator[_T_co]: ...
def index(self, value: Any, start: int = 0, stop: int = ..., /) -> int: ...
def index(self, value: Any, start: int = ..., stop: int = ..., /) -> int: ...
def count(self, value: Any, /) -> int: ...
def __reversed__(self) -> Iterator[_T_co]: ...

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ mypy = "1.8.0"
pandas = "2.1.4"
pyarrow = ">=10.0.1"
pytest = ">=7.1.2"
pyright = ">=1.1.343"
pyright = ">=1.1.344"
poethepoet = ">=0.16.5"
loguru = ">=0.6.0"
typing-extensions = ">=4.4.0"
Expand Down Expand Up @@ -208,4 +208,3 @@ filterwarnings = [

# Next line needed to avoid poetry complaint
[tool.setuptools_scm]

0 comments on commit ce82005

Please sign in to comment.