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.
1 parent d47b70b commit de9e1f9Copy full SHA for de9e1f9
1 file changed
kmir/src/kmir/kparse.py
@@ -18,7 +18,7 @@
18
19
20
class KParse(KPrint):
21
- command: str
+ parser: str
22
23
def __init__(
24
self,
@@ -36,7 +36,7 @@ def __init__(
36
extra_unparsing_modules=extra_unparsing_modules,
37
patch_symbol_table=patch_symbol_table,
38
)
39
- self.command = command
+ self.parser = command
40
41
def parse_process(
42
@@ -49,7 +49,7 @@ def parse_process(
49
ntf.flush()
50
51
return _kparse(
52
- command=self.command,
+ command=self.parser,
53
input_file=Path(ntf.name),
54
definition_dir=self.definition_dir,
55
sort=sort,
0 commit comments