mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
405 B
HTML
17 lines
405 B
HTML
<html>
|
|
<body>
|
|
<p>Reports docstrings that do not adhere to the triple double-quoted string format.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
def calc(self, balance=0):
|
|
'param: balance'
|
|
self.balance = balance
|
|
</code></pre>
|
|
<p>When the quick-fix is applied, the code changes to:</p>
|
|
<pre><code>
|
|
def calc(self, balance=0):
|
|
"""param: balance"""
|
|
self.balance = balance
|
|
</code></pre>
|
|
</body>
|
|
</html> |