Files
codeql/python/ql/test/experimental/query-tests/Classes/Naming/NamingConventionsClasses.py
2026-06-19 12:22:40 +01:00

11 lines
243 B
Python

# BAD, do not start class or interface name with lowercase letter
class badName: # $ Alert
def hello(self):
print("hello")
# Good, class name starts with capital letter
class GoodName:
def hello(self):
print("hello")