You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ran into an issue today where I created a MulensData object with plot_properties = {'label': 224}. Because this number is an int, repr does not work properly (it assumes a string). This could be easily solved by returning str(name) instead of just name in _get_name() at L184.
The text was updated successfully, but these errors were encountered:
Ran into an issue today where I created a MulensData object with
plot_properties = {'label': 224}
. Because this number is an int, repr does not work properly (it assumes a string). This could be easily solved by returningstr(name)
instead of justname
in_get_name()
at L184.The text was updated successfully, but these errors were encountered: