Skip to content

Commit

Permalink
build(deps-dev): bump mypy from 1.3.0 to 1.4.0 (#496)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump mypy from 1.3.0 to 1.4.0

Bumps [mypy](https://github.com/python/mypy) from 1.3.0 to 1.4.0.
- [Commits](python/mypy@v1.3.0...v1.4.0)

---
updated-dependencies:
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix: lint, remove unused type ignore

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: sanix-darker <s4nixd@gmail.com>
  • Loading branch information
dependabot[bot] and Sanix-Darker authored Jun 22, 2023
1 parent e684b30 commit 5acfbc1
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion peakina/datasource.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def get_matched_datasources(self) -> Generator["DataSource", None, None]:
my_args = asdict(self)
for uri in self.fetcher.get_filepath_list(self.uri, self.match):
overriden_args = {**my_args, "uri": uri, "match": None}
yield DataSource(**overriden_args) # type: ignore[arg-type]
yield DataSource(**overriden_args)

def get_dfs(self, cache: Cache | None = None) -> Generator[pd.DataFrame, None, None]:
"""
Expand Down
56 changes: 28 additions & 28 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ flake8 = "^6.0.0"
isort = "^5.12.0"
mkdocs = "^1.4.3"
mkdocs-material = "^9.1.16"
mypy = "^1.3"
mypy = "^1.4"
pre-commit = "^3.3.3"
pytest = "^7.3.1"
pytest-cov = "^4.1.0"
Expand Down

0 comments on commit 5acfbc1

Please sign in to comment.