mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
239 B
Python
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") |