Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
finesse
pykat
Commits
2edab215
Commit
2edab215
authored
Apr 19, 2016
by
Daniel Brown
Browse files
Forcing string conversion for exception checking in SIFloat, should get rid of unicode warnings
parent
2af32e96
Changes
1
Hide whitespace changes
Inline
Side-by-side
pykat/SIfloat.py
View file @
2edab215
...
...
@@ -31,7 +31,7 @@ def SIfloat(value):
if
value
is
None
:
return
value
if
value
in
__exceptions
:
if
str
(
value
)
in
__exceptions
:
return
value
value
=
np
.
array
(
value
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment