We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9854bb2 commit 451b7ecCopy full SHA for 451b7ec
.github/workflows/dist.yml
@@ -30,5 +30,7 @@ jobs:
30
pip --disable-pip-version-check install mypy setuptools wheel setuptools_scm
31
pip --disable-pip-version-check install --no-build-isolation -e .
32
- name: Run mypy
33
- run: |
34
- mypy commands2
+ uses: liskin/gh-problem-matcher-wrap@v2
+ with:
35
+ linters: mypy
36
+ run: mypy --show-column-numbers commands2
commands2/command.py
@@ -58,7 +58,7 @@ class Command(Sendable):
58
InterruptionBehavior # type alias for 2023 location
59
)
60
61
- requirements: Set[Subsystem]
+ requirements: Set[Command]
62
63
def __new__(cls, *args, **kwargs) -> Self:
64
instance = super().__new__(
0 commit comments