mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 23:00:18 +00:00
Missing a semicolon in the function definition
This commit is contained in:
@@ -347,7 +347,7 @@ Some guidelines help to avoid this issue:
|
||||
|
||||
count = 1
|
||||
msg = 'a string'
|
||||
def func()
|
||||
def func():
|
||||
pass # Do something
|
||||
|
||||
Using short functions or methods helps reduce the risk
|
||||
|
||||
Reference in New Issue
Block a user