Skip to content

Commit 7218b37

Browse files
committed
Fix type error in test_re test code
1 parent b363e6d commit 7218b37

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python.test/src/tests

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_re.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def __getitem__(self, index):
8585

8686
class B(bytes):
8787
def __getitem__(self, index):
88-
return B(super().__getitem__(index))
88+
return super().__getitem__(index)
8989

9090

9191
class ReTests(unittest.TestCase):

0 commit comments

Comments
 (0)