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 9bed997 commit aa4ad2eCopy full SHA for aa4ad2e
notebooks/PythonObjects.ipynb
@@ -1308,7 +1308,7 @@
1308
"\n",
1309
"- also called anti-pattern because there is only one instance of the class\n",
1310
"- use `__new__()` method to create a new instance of the class\n",
1311
- "_ `__new__()` is a class method that is called before the `__init__()` instance method\n",
+ "- `__new__()` is a class method that is called before the `__init__()` instance method\n",
1312
"- use `cls` parameter to check if the instance is already created\n",
1313
"- return the instance if it's already created\n",
1314
"- otherwise, create a new instance and return it\n",
0 commit comments