Skip to content

Commit dadd093

Browse files
Irina NicolaeIrina Nicolae
authored andcommitted
Correct unicode string for python2
1 parent b47cf34 commit dadd093

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

art/classifiers/classifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
if sys.version_info >= (3, 4):
88
ABC = abc.ABC
99
else:
10-
ABC = abc.ABCMeta('ABC', (), {})
10+
ABC = abc.ABCMeta(str('ABC'), (), {})
1111

1212

1313
class Classifier(ABC):

0 commit comments

Comments
 (0)