Skip to content

Commit 541b972

Browse files
author
Daniele Esposti
committed
Fixed name clashes with built-in types
1 parent 2f4de9a commit 541b972

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/utils/command.py

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

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

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

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

0 commit comments

Comments
 (0)