Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #174

Merged
merged 2 commits into from
Apr 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repos:
- id: check-manifest

- repo: https://github.com/psf/black
rev: 22.12.0
rev: 23.3.0
hooks:
- id: black
exclude: ^docs/
Expand All @@ -38,7 +38,7 @@ repos:
- flake8-unused-arguments==0.0.9

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
rev: v1.1.1
hooks:
- id: mypy
additional_dependencies:
Expand All @@ -59,7 +59,7 @@ repos:
args: [--profile, black, --filter-files]

- repo: https://github.com/sirosen/check-jsonschema
rev: 0.19.2
rev: 0.22.0
hooks:
- id: check-github-workflows

Expand Down
1 change: 0 additions & 1 deletion aiidalab_launch/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ async def _async_start(
configuration_changed = False

try:

InstanceStatus = instance.AiidaLabInstanceStatus # local alias for brevity

status = await instance.status()
Expand Down
1 change: 0 additions & 1 deletion aiidalab_launch/application_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def _load_config():

@dataclass
class ApplicationState:

config_path: Path = field(default_factory=_application_config_path)
config: Config = field(default_factory=_load_config)
docker_client: docker.DockerClient = field(default_factory=get_docker_client)
Expand Down
1 change: 0 additions & 1 deletion aiidalab_launch/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def spinner(
"""Display spinner only after an optional initial delay."""

def spin() -> None:

# Don't show spinner if verbose output is enabled
level = logging.getLogger().getEffectiveLevel()
show_spinner = (
Expand Down