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 #211

Merged
merged 2 commits into from
Apr 1, 2024
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ repos:
- id: yamlfmt

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.1
rev: v0.3.4
hooks:
- id: ruff-format
exclude: ^docs/
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --show-fixes]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
rev: v1.9.0
hooks:
- id: mypy
additional_dependencies:
Expand Down
1 change: 1 addition & 0 deletions aiidalab_launch/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Authors:
* Carl Simon Adorf <[email protected]>
"""

import asyncio
import getpass
import logging
Expand Down
1 change: 1 addition & 0 deletions aiidalab_launch/application_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Authors:
* Carl Simon Adorf <[email protected]>
"""

from dataclasses import dataclass, field
from pathlib import Path

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""This file is required for editable installs of the package."""

from setuptools import setup

setup()
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

Provide fixtures for all tests.
"""

import asyncio
import random
import re
Expand Down
1 change: 1 addition & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
This is the test module for the project's command-line interface (CLI)
module.
"""

import logging
from dataclasses import replace

Expand Down
1 change: 1 addition & 0 deletions tests/test_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.. currentmodule:: test_core
.. moduleauthor:: Carl Simon Adorf <[email protected]>
"""

import re
from copy import deepcopy
from dataclasses import replace
Expand Down
Loading