Skip to content

Commit 15f1d06

Browse files
committed
Start argument on same indent as first arg
1 parent a09fdc4 commit 15f1d06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/messages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def note(self, msg: str, context: Context, file: Optional[str] = None,
203203
offset=offset)
204204

205205
def note_multiline(self, messages: str, context: Context, file: Optional[str] = None,
206-
origin: Optional[Context] = None, offset: int = 0) -> None:
206+
origin: Optional[Context] = None, offset: int = 0) -> None:
207207
"""Report as many notes as lines in the message (unless disabled)."""
208208
for msg in messages.splitlines():
209209
self.report(msg, context, 'note', file=file, origin=origin,

0 commit comments

Comments
 (0)