1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-06-09 06:37:47 +02:00
This commit is contained in:
Sanchit Gupta 2023-10-11 05:55:37 -07:00 committed by GitHub
commit b6b293b8ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

2
README.md vendored
View File

@ -1535,7 +1535,7 @@ class C(A):
2\. 2\.
```py ```py
class SomeClass: class SomeClass(int):
some_var = 15 some_var = 15
some_list = [5] some_list = [5]
another_list = [5] another_list = [5]

View File

@ -859,7 +859,7 @@ class C(A):
2\. 2\.
```py ```py
class SomeClass: class SomeClass(int):
some_var = 15 some_var = 15
some_list = [5] some_list = [5]
another_list = [5] another_list = [5]