Skip to content

Commit 3763dec

Browse files
authored
remove kwargs from print (#401)
1 parent 944a4fd commit 3763dec

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sqlmesh/core/console.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,12 +660,12 @@ def _print(self, value: t.Any, **kwargs: t.Any) -> None:
660660
print(output)
661661

662662
def _prompt(self, message: str, **kwargs: t.Any) -> t.Any:
663-
self._print(message, **kwargs)
663+
self._print(message)
664664
return super()._prompt("", **kwargs)
665665

666666
def _confirm(self, message: str, **kwargs: t.Any) -> bool:
667667
message = f"{message} \[y/n]"
668-
self._print(message, **kwargs)
668+
self._print(message)
669669
return super()._confirm("", **kwargs)
670670

671671

0 commit comments

Comments
 (0)