8000
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 656d4ce commit e564a15Copy full SHA for e564a15
plotly/tests/utils.py
@@ -11,11 +11,11 @@ class PlotlyTestCase(TestCase):
11
12
# parent test case to assist with clean up of local credentials/config
13
14
- def __init__(self, **kwargs):
+ def __init__(self, *args, **kwargs):
15
self._file_credentials = None
16
self._file_config = None
17
self._session = None
18
- super(PlotlyTestCase, self).__init__(**kwargs)
+ super(PlotlyTestCase, self).__init__(*args, **kwargs)
19
20
def setUp(self):
21
self.stash_file_credentials_and_config()
0 commit comments