Skip to content

Commit 96e94b4

Browse files
committed
lint
1 parent 03759b2 commit 96e94b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/datasets_utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ def test_foo(self):
151151
def test_bar(self, config):
152152
pass
153153
154-
Within the test you can use the ``create_dataset()`` method that yields the dataset as well as additional information
155-
provided by the ``ìnject_fake_data()`` method:
154+
Within the test you can use the ``create_dataset()`` method that yields the dataset as well as additional
155+
information provided by the ``ìnject_fake_data()`` method:
156156
157157
.. code-block::
158158
@@ -278,7 +278,7 @@ def _process_optional_public_class_attributes(cls):
278278
if cls.CONFIGS is None:
279279
config = {
280280
kwarg: default
281-
for kwarg, default in zip(argspec.args[-len(argspec.defaults) :], argspec.defaults)
281+
for kwarg, default in zip(argspec.args[-len(argspec.defaults):], argspec.defaults)
282282
if kwarg not in cls._SPECIAL_KWARGS
283283
}
284284
cls.CONFIGS = (config,)

0 commit comments

Comments
 (0)