mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
339 B
HTML
16 lines
339 B
HTML
<html>
|
|
<body>
|
|
<p>Reports cases when a list declaration
|
|
can be rewritten with a list literal.</p>
|
|
<p>This ensures better performance of your application.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
l = [1]
|
|
l.append(2)
|
|
</code></pre>
|
|
<p>When the quick-fix is applied, the code changes to:</p>
|
|
<pre><code>
|
|
l = [1, 2]
|
|
</code></pre>
|
|
</body>
|
|
</html> |