Skip to content

Commit e5e9043

Browse files
authored
Added missing-module-docstring message example (#6249)
1 parent 5741fe8 commit e5e9043

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-module-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)