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 8aba25d commit d76a8fbCopy full SHA for d76a8fb
pandas/tests/frame/methods/test_replace.py
@@ -1,7 +1,7 @@
1
from datetime import datetime
2
from io import StringIO
3
import re
4
-from typing import Dict
+from typing import Dict, List, Union
5
6
import numpy as np
7
import pytest
@@ -12,7 +12,7 @@
12
13
14
@pytest.fixture
15
-def mix_ab() -> Dict[str, list]:
+def mix_ab() -> Dict[str, List[Union[int, str]]]:
16
return {"a": list(range(4)), "b": list("ab..")}
17
18
0 commit comments