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 61b09b3 commit f30bec9Copy full SHA for f30bec9
test_autoflake.py
@@ -110,6 +110,8 @@ def test_filter_star_import(self):
110
def test_filter_unused_variable(self):
111
self.assertEqual('foo()',
112
autoflake.filter_unused_variable('x = foo()'))
113
+ self.assertEqual('foo(k=None)',
114
+ autoflake.filter_unused_variable('x = foo(k=None)'))
115
116
self.assertEqual(' foo()',
117
autoflake.filter_unused_variable(' x = foo()'))
0 commit comments