Skip to content

Commit

Permalink
Remove lingering type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
geowurster committed Nov 20, 2023
1 parent 43026c1 commit 0d37902
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def test_func(runner):
from io import StringIO
import textwrap
from types import MethodType
from typing import Callable, Union
from unittest import mock

import pytest
Expand Down Expand Up @@ -150,10 +149,10 @@ def __init__(self, *, exit_code: int, output: str, err: str):
@classmethod
def invoke(
cls,
func: Callable,
rawargs: list,
func,
rawargs,
*,
input: Union[str, None] = None
input=None
):

"""Execute a command and return the result.
Expand Down

0 comments on commit 0d37902

Please sign in to comment.