Skip to content

Commit

Permalink
improve linting
Browse files Browse the repository at this point in the history
Use a later version of `flake8`, and resolve a deprecation warning.
  • Loading branch information
nicois committed Apr 30, 2024
1 parent a1b3159 commit ce330ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repos:
- id: black

- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 7.0.0
hooks:
- id: flake8
files: \.py$
Expand Down
4 changes: 2 additions & 2 deletions astacus/coordinator/plugins/clickhouse/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
See LICENSE for details
"""
from astacus.coordinator.plugins.clickhouse.manifest import AccessEntity, Table
from collections.abc import Sequence
from typing import Callable, Hashable, TypeVar
from collections.abc import Hashable, Sequence
from typing import Callable, TypeVar

# noinspection PyCompatibility
import graphlib
Expand Down

0 comments on commit ce330ea

Please sign in to comment.