UT: Fix typehint in credentials conftest.py

This commit is contained in:
vakaris_zilius 2022-09-06 13:09:19 +00:00
parent 233090942a
commit 16a59a3f5a
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
from typing import List
from typing import List, Union
import pytest
@ -9,7 +9,7 @@ def valid_ntlm_hash() -> str:
@pytest.fixture(scope="session")
def invalid_ntlm_hashes() -> List[str]:
def invalid_ntlm_hashes() -> List[Union[str, int, float]]:
return [
0,
1,