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
I'm actually open to suggestions for how to fix it. One is to change the return type to Optional[int] and push the optionality up the stack. Another is to return int(code) if code else 3857, but that might be seen as further reinforcing the dependence on 3857 that I think you've tried to get rid of elsewhere. (That said.... if you want a different EPSG maybe specify one :))
That last line errors when no EPSG is set, because epsg_string will be
""
and so will"code"
. This function gets called from:Because
_get_qgis_crs
gets called all the time (in_on_timeout
, in_handle_mouse_move
...) this basically results in constant errors.I'll try to write a patch.
The text was updated successfully, but these errors were encountered: