Skip to content

Commit a0dbc81

Browse files
committed
fix: tests
1 parent d3d5b46 commit a0dbc81

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
@@ -173,8 +173,8 @@ def __getitem__(self, i: slice) -> bytes: ...
173173
def join(self, x: Iterable[object]) -> bytes: ...
174174
def decode(self, x: str=..., y: str=...) -> str: ...
175175
def __iter__(self) -> Iterator[int]: ...
176-
def ljust(self, width: int, fillchar: bytes) -> bytes: ...
177-
def rjust(self, width: int, fillchar: bytes) -> bytes: ...
176+
def ljust(self, width: int, fillchar: bytes | bytearray = b" ") -> bytes: ...
177+
def rjust(self, width: int, fillchar: bytes | bytearray = b" ") -> bytes: ...
178178

179179
class bytearray:
180180
@overload

0 commit comments

Comments
 (0)