Puts use_of_apply example back into expressions_test to avoid messing up other tests

This commit is contained in:
Rebecca Valentine
2020-02-27 10:44:46 -08:00
parent 2fb722b04e
commit d19957f09d
2 changed files with 5 additions and 0 deletions

View File

@@ -1 +1,2 @@
| UseofApply.py:19:3:19:17 | ControlFlowNode for apply() | Call to the obsolete builtin function 'apply'. |
| expressions_test.py:3:5:3:21 | ControlFlowNode for apply() | Call to the obsolete builtin function 'apply'. |

View File

@@ -1,3 +1,7 @@
def use_of_apply(func, args):
apply(func, args)
def use_of_input():
return input()