Skip to content

Commit 5adfee5

Browse files
committed
fix: tests
1 parent 173dccb commit 5adfee5

File tree

1 file changed

+2
-2
lines changed
  • mypyc/test-data/fixtures

1 file changed

+2
-2
lines changed

mypyc/test-data/fixtures/ir.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ def __getitem__(self, i: slice) -> bytes: ...
174174
def join(self, x: Iterable[object]) -> bytes: ...
175175
def decode(self, encoding: str=..., errors: str=...) -> str: ...
176176
def __iter__(self) -> Iterator[int]: ...
177-
def ljust(self, width: int, fillchar: bytes) -> bytes: ...
178-
def rjust(self, width: int, fillchar: bytes) -> bytes: ...
177+
def ljust(self, width: int, fillchar: bytes | bytearray = b" ") -> bytes: ...
178+
def rjust(self, width: int, fillchar: bytes | bytearray = b" ") -> bytes: ...
179179

180180
class bytearray:
181181
@overload

0 commit comments

Comments
 (0)