Skip to content

Commit

Permalink
Try using np.unicode_ dtype for Python 3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
sbesson committed Nov 28, 2019
1 parent 7020c13 commit 57374ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/omero/columns.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def dtypes(self):
(Testing suggests this may not be necessary, the size appears to be
correctly set at initialisation)
"""
return [(self.name, "S", self.size)]
return [(self.name, "U", self.size)]

def descriptor(self, pos):
# During initialization, size might be zero
Expand Down

0 comments on commit 57374ae

Please sign in to comment.