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 2b2f601 commit 4ea4069Copy full SHA for 4ea4069
1 file changed
components/dash-table/tests/selenium/conftest.py
@@ -11,7 +11,6 @@
11
from selenium.webdriver.support.wait import WebDriverWait
12
13
14
-
15
class PreconditionError(TypeError):
16
pass
17
@@ -31,7 +30,7 @@ def null_decorator(f):
31
30
32
precinfo = []
33
for p in precs:
34
- spec = inspect.getargspec(p)
+ spec = inspect.getfullargspec(p)
35
if spec.varargs or spec.keywords:
36
raise PreconditionError(
37
(
@@ -47,7 +46,7 @@ def null_decorator(f):
47
46
precinfo.append((appargs, closureargs, p))
48
49
def decorate(f):
50
- fspec = inspect.getargspec(f)
+ fspec = inspect.getfullargspec(f)
51
52
for (appargs, closureargs, p) in precinfo:
53
for apparg in appargs:
0 commit comments