Files
codeql/python/ql/test/experimental/query-tests/Functions/general/NamingConventionsFunctions.py
2020-07-01 09:54:58 -07:00

9 lines
239 B
Python

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