You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/usr/bin/env python3importkiutilsfromkiutils.symbolimportSymbolLibfromkiutils.schematicimportSchematicimportosfromosimportpathimportargparsefrompathlibimportPath# Arg Parsingparser=argparse.ArgumentParser(description="Open Then Save and Close To Test Bug Replication")
parser.add_argument("src", type=Path)
p=parser.parse_args()
src_file=p.src.resolve()
base_path=path.dirname(path.realpath(__file__))
# Offending Lineskicad_container=Schematic().from_file(src_file)
kicad_container.to_file(src_file)