Skip to content
Snippets Groups Projects
Commit 772956b7 authored by Nikolai's avatar Nikolai
Browse files

python3 compatibility

parent 06153869
No related branches found
No related tags found
No related merge requests found
...@@ -64,6 +64,8 @@ def byteify(input): ...@@ -64,6 +64,8 @@ def byteify(input):
else: else:
return input return input
if version_info[0] > 2:
byteify = lambda input : input
class ClassificationProject(object): class ClassificationProject(object):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment