best-doctor/mr_proper

View on GitHub
mr_proper/utils/python_naming.py

Summary

Maintainability
A
0 mins
Test Coverage
A
100%


def is_python_class_name(name: str) -> bool:
    return name[0] == name[0].upper() and name[1:] == name[1:].lower()