Merge 4578d64a9b5db9132c6368449bbab1024ebfd54b into 0676b21da2827b827ee7cac89e9b27c4aa3c005e

This commit is contained in:
Deepanjali Pathak 2026-03-20 16:59:32 +05:30 committed by GitHub
commit abb7e3ed80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -159,7 +159,7 @@ __ERROR:
| Subclass | `class A(B):` | ✅ |
| List | `[1, 2, 'a']` | ✅ |
| ListComp | `[i for i in range(5)]` | ✅ |
| Slice | `a[1:2], a[:2], a[1:]` | ✅ |
| Slice | `a[1:2], a[:2], a[1:] a[::2]` | ✅ |
| Tuple | `(1, 2, 'a')` | ✅ |
| Dict | `{'a': 1, 'b': 2}` | ✅ |
| F-String | `f'value is {x}'` | ✅ |