8000 pytype: disable=module-attr · shader/python-fire@780a360 · GitHub
[go: up one dir, main page]

Skip to content

Commit 780a360

Browse files
dbiebercopybara-github
authored andcommitted
pytype: disable=module-attr
PiperOrigin-RevId: 297944246 Change-Id: I23e8871ba0a968dbd20325883f2322114c5d8971
1 parent 4de6607 commit 780a360

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fire/core_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,13 +197,13 @@ def testClassMethod(self):
197197
@testutils.skipIf(six.PY2, 'lru_cache is Python 3 only.')
198198
def testLruCacheDecoratorBoundArg(self):
199199
self.assertEqual(
200-
core.Fire(tc.py3.LruCacheDecoratedMethod, # pylint: disable=module-attr
200+
core.Fire(tc.py3.LruCacheDecoratedMethod, # pytype: disable=module-attr
201201
command=['lru_cache_in_class', 'foo']), 'foo')
202202

203203
@testutils.skipIf(six.PY2, 'lru_cache is Python 3 only.')
204204
def testLruCacheDecorator(self):
205205
self.assertEqual(
206-
core.Fire(tc.py3.lru_cache_decorated, # pylint: disable=module-attr
206+
core.Fire(tc.py3.lru_cache_decorated, # pytype: disable=module-attr
207207
command=['foo']), 'foo')
208208

209209

0 commit comments

Comments
 (0)
0