Skip to content

Commit 10b92cb

Browse files
committed
Added missing-module-docstring message example
1 parent 5741fe8 commit 10b92cb

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

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

0 commit comments

Comments
 (0)