Remove old inp in routine
This commit is contained in:
@@ -11,7 +11,7 @@ def set_option(name: str, cs: ChangeSet) -> ChangeSet:
|
||||
return execute_batch_command(name, new_cs)
|
||||
|
||||
|
||||
def inp_in_option(section: list[str]) -> ChangeSet:
|
||||
def _inp_in_option(section: list[str]) -> ChangeSet:
|
||||
if len(section) <= 0:
|
||||
return ChangeSet()
|
||||
|
||||
@@ -41,9 +41,9 @@ def inp_in_option(section: list[str]) -> ChangeSet:
|
||||
return result
|
||||
|
||||
|
||||
def inp_in_option_new(section: list[str]) -> str:
|
||||
def inp_in_option(section: list[str]) -> str:
|
||||
sql = ''
|
||||
result = inp_in_option(section)
|
||||
result = _inp_in_option(section)
|
||||
for op in result.operations:
|
||||
for key in op.keys():
|
||||
if key == 'operation' or key == 'type':
|
||||
|
||||
Reference in New Issue
Block a user