8000
We read every piece of feedback, and take your input very seriously.
8000 To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4de6607 commit 780a360Copy full SHA for 780a360
fire/core_test.py
@@ -197,13 +197,13 @@ def testClassMethod(self):
197
@testutils.skipIf(six.PY2, 'lru_cache is Python 3 only.')
198
def testLruCacheDecoratorBoundArg(self):
199
self.assertEqual(
200
- core.Fire(tc.py3.LruCacheDecoratedMethod, # pylint: disable=module-attr
+ core.Fire(tc.py3.LruCacheDecoratedMethod, # pytype: disable=module-attr
201
command=['lru_cache_in_class', 'foo']), 'foo')
202
203
204
def testLruCacheDecorator(self):
205
206
- core.Fire(tc.py3.lru_cache_decorated, # pylint: disable=module-attr
+ core.Fire(tc.py3.lru_cache_decorated, # pytype: disable=module-attr
207
command=['foo']), 'foo')
208
209
0 commit comments