Skip to content

Commit

Permalink
Fix pre-commit issues
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrice Normandin <[email protected]>
  • Loading branch information
lebrice committed Apr 18, 2024
1 parent 7ec02d1 commit 51bc370
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions milatools/utils/remote_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ def run(
out_stream: TextIO | None = None,
in_stream: TextIO | bool = False,
**kwargs,
) -> invoke.runners.Result: ...
) -> invoke.runners.Result:
...

@overload
def run(
Expand All @@ -220,7 +221,8 @@ def run(
out_stream: TextIO | None = None,
in_stream: TextIO | bool = False,
**kwargs,
) -> invoke.runners.Promise: ...
) -> invoke.runners.Promise:
...

@overload
def run(
Expand All @@ -234,7 +236,8 @@ def run(
out_stream: TextIO | None = None,
in_stream: TextIO | bool = False,
**kwargs,
) -> invoke.runners.Result | invoke.runners.Promise: ...
) -> invoke.runners.Result | invoke.runners.Promise:
...

def run(
self,
Expand Down

0 comments on commit 51bc370

Please sign in to comment.