We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
input_file
_kore_print
1 parent d856808 commit 8e0f226Copy full SHA for 8e0f226
1 file changed
pyk/src/pyk/kore/tools.py
@@ -55,12 +55,7 @@ def _kore_print(
55
# ---
56
input: str | None,
57
) -> str:
58
- args = ['kore-print']
59
-
60
- input_file = Path(input_file)
61
- if not input_file.is_char_device():
62
- check_file_path(input_file)
63
- args += [str(input_file)]
+ args = ['kore-print', str(input_file)]
64
65
if definition_dir is not None:
66
definition_dir = Path(definition_dir)
0 commit comments