def lowerFirst()

in Utilities/gyb_utils.py [0:0]


def lowerFirst(str):
  return str[:1].lower() + str[1:] if str else ""