Files
codeql/python/ql/test/experimental/query-tests/Functions/general/NamingConventionsFunctions.py
2026-06-15 16:15:17 +01:00

9 lines
249 B
Python

class Test:
# BAD, do not start function name with uppercase letter
def HelloWorld(self): # $ Alert
print("hello world")
# GOOD, function name starts with lowercase letter
def hello_world(self):
print("hello world")