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 e5e9043 commit 1c060fbCopy full SHA for 1c060fb
doc/data/messages/m/missing-class-docstring/bad.py
@@ -0,0 +1,5 @@
1
+class Person: # [missing-class-docstring]
2
+
3
+ def __init__(self, first_name, last_name):
4
+ self.first_name = first_name
5
+ self.last_name = last_name
doc/data/messages/m/missing-class-docstring/good.py
@@ -0,0 +1,6 @@
+class Person:
+ """Class representing a person"""
6
0 commit comments