writers test: fix python2 linter errors
This commit is contained in:
parent
a5d874935e
commit
e7cccb74ee
1 changed files with 4 additions and 0 deletions
|
@ -49,9 +49,11 @@ let
|
|||
python2 = writePython2Bin "test_writers" { libraries = [ python2Packages.enum ]; } ''
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class Test(Enum):
|
||||
a = "success"
|
||||
|
||||
|
||||
print Test.a
|
||||
'';
|
||||
|
||||
|
@ -112,9 +114,11 @@ let
|
|||
python2 = writePython2 "test_python2" { libraries = [ python2Packages.enum ]; } ''
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class Test(Enum):
|
||||
a = "success"
|
||||
|
||||
|
||||
print Test.a
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue