Merge 4578d64a9b5db9132c6368449bbab1024ebfd54b into a2f16e5f1f5fcc3b3d2cc1bdacfc3a027dfe2d76

This commit is contained in:
Deepanjali Pathak 2026-03-19 14:50:04 +05:30 committed by GitHub
commit 8237a3da69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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