writers test: fix python2 linter errors
This commit is contained in:
parent
a5d874935e
commit
e7cccb74ee
@ -49,9 +49,11 @@ let
|
|||||||
python2 = writePython2Bin "test_writers" { libraries = [ python2Packages.enum ]; } ''
|
python2 = writePython2Bin "test_writers" { libraries = [ python2Packages.enum ]; } ''
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
|
|
||||||
|
|
||||||
class Test(Enum):
|
class Test(Enum):
|
||||||
a = "success"
|
a = "success"
|
||||||
|
|
||||||
|
|
||||||
print Test.a
|
print Test.a
|
||||||
'';
|
'';
|
||||||
|
|
||||||
@ -112,9 +114,11 @@ let
|
|||||||
python2 = writePython2 "test_python2" { libraries = [ python2Packages.enum ]; } ''
|
python2 = writePython2 "test_python2" { libraries = [ python2Packages.enum ]; } ''
|
||||||
from enum import Enum
|
from enum import Enum
|
||||||
|
|
||||||
|
|
||||||
class Test(Enum):
|
class Test(Enum):
|
||||||
a = "success"
|
a = "success"
|
||||||
|
|
||||||
|
|
||||||
print Test.a
|
print Test.a
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user