mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
233 B
Python
11 lines
233 B
Python
# BAD, do not start class or interface name with lowercase letter
|
|
class badName:
|
|
|
|
def hello(self):
|
|
print("hello")
|
|
|
|
# Good, class name starts with capital letter
|
|
class GoodName:
|
|
|
|
def hello(self):
|
|
print("hello") |