Replace inp in file

This commit is contained in:
WQY\qiong
2023-03-21 21:08:20 +08:00
parent def44d80b3
commit 8681a56ed7
4 changed files with 247 additions and 524 deletions

View File

@@ -186,12 +186,12 @@ def copy_project(source: str, new: str) -> None:
return api.copy_project(source, new)
def read_inp(name: str, inp: str) -> bool:
return api.read_inp_new(name, inp)
return api.read_inp(name, inp)
def dump_inp(name: str, inp: str) -> None:
return api.dump_inp(name, inp)
def import_inp(name: str, cs: ChangeSet) -> ChangeSet:
def import_inp(name: str, cs: ChangeSet) -> bool:
return api.import_inp(name, cs)
def export_inp(name: str) -> ChangeSet: