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
The pyutils.camel_to_snake function does not add an underscore if a capital letter occurs after a non-letter character. For example, came_to_snake("python2Thing") returns python2thing instead of python2_thing. This seems counterintuitive, as it changes the case of the T without adding an underscore as usual.