Skip to content

Commit f43d260

Browse files
committed
fix: tests
1 parent 8797b7f commit f43d260

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
@@ -176,8 +176,8 @@ def __getitem__(self, i: slice) -> bytes: ...
176176
def join(self, x: Iterable[object]) -> bytes: ...
177177
def decode(self, encoding: str=..., errors: str=...) -> str: ...
178178
def __iter__(self) -> Iterator[int]: ...
179-
def ljust(self, width: int, fillchar: bytes) -> bytes: ...
180-
def rjust(self, width: int, fillchar: bytes) -> bytes: ...
179+
def ljust(self, width: int, fillchar: bytes | bytearray = b" ") -> bytes: ...
180+
def rjust(self, width: int, fillchar: bytes | bytearray = b" ") -> bytes: ...
181181

182182
class bytearray:
183183
@overload

0 commit comments

Comments
 (0)