mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
14 lines
273 B
HTML
14 lines
273 B
HTML
<html>
|
|
<body>
|
|
<p>Reports a problem when you are trying
|
|
to call objects that are not callable, like, for example, properties:</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
class Record:
|
|
@property
|
|
def as_json(self):
|
|
|
|
json = Record().as_json()
|
|
</code></pre>
|
|
</body>
|
|
</html> |