Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#174)
Browse files Browse the repository at this point in the history
updates:
- [github.com/psf/black: 22.12.0 → 23.3.0](psf/black@22.12.0...23.3.0)
- [github.com/pre-commit/mirrors-mypy: v0.991 → v1.1.1](pre-commit/mirrors-mypy@v0.991...v1.1.1)
- [github.com/sirosen/check-jsonschema: 0.19.2 → 0.22.0](python-jsonschema/check-jsonschema@0.19.2...0.22.0)
  • Loading branch information
pre-commit-ci[bot] authored Apr 4, 2023
1 parent d23d004 commit 0d91451
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
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

0 comments on commit 0d91451

Please sign in to comment.