We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c060fb commit 9afac3dCopy full SHA for 9afac3d
doc/data/messages/m/missing-function-docstring/bad.py
@@ -0,0 +1,5 @@
1
+import sys
2
+
3
4
+def print_python_version(): # [missing-function-docstring]
5
+ print(sys.version)
doc/data/messages/m/missing-function-docstring/good.py
@@ -0,0 +1,6 @@
+def print_python_version():
+ """Function printing python version."""
6
0 commit comments