Skip to content

Commit 9afac3d

Browse files
authored
Added missing-function-docstring message example (#6248)
1 parent 1c060fb commit 9afac3d

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import sys
2+
3+
4+
def print_python_version(): # [missing-function-docstring]
5+
print(sys.version)
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import sys
2+
3+
4+
def print_python_version():
5+
"""Function printing python version."""
6+
print(sys.version)

0 commit comments

Comments
 (0)