Skip to content

Commit bdca121

Browse files
author
Daniele Esposti
committed
Fxed name clashes with built-in types
1 parent 68a6e48 commit bdca121

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/utils/command.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ class MacroCommandTestVO(object):
2121
result1 = None
2222
result2 = None
2323

24-
def __init__(self, input):
25-
self.input = input
24+
def __init__(self, input_):
25+
self.input = input_
2626

2727
class SimpleCommandTestCommand(puremvc.patterns.command.SimpleCommand):
2828
def execute(self,note):
@@ -34,5 +34,5 @@ class SimpleCommandTestVO(object):
3434
input = None
3535
result = None
3636

37-
def __init__(self, input):
38-
self.input = input
37+
def __init__(self, input_):
38+
self.input = input_

0 commit comments

Comments
 (0)