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.
2 parents 9f50044 + aa4ad2e commit b8e7d51Copy full SHA for b8e7d51
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