8000 Missing a semicolon in the function definition · mindsocket/python-guide@f2ca4ea · GitHub
[go: up one dir, main page]

Skip to content

Commit f2ca4ea

Browse files
author
silkuze
committed
Missing a semicolon in the function definition
1 parent 63165d8 commit f2ca4ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/writing/structure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ Some guidelines help to avoid this issue:
347347
348348
count = 1
349349
msg = 'a string'
350-
def func()
350+
def func():
351351
pass # Do something
352352
353353
Using short functions or methods helps reduce the risk

0 commit comments

Comments
 (0)
0