in library/scripts/find_movable_strings.py [0:0]
def main():
parser = argparse.ArgumentParser(description="Find strings to move to string packs")
parser.add_argument(
"--reverse",
action="store_true",
help="List the strings that cannot be moved, instead of those that can be moved.",
)
parser.add_argument("--config", help="Location of JSON config file.")
args = parser.parse_args()
sp_config = string_pack_config.load_config(config_json_file_path=args.config)
find_movable_strings(sp_config, args.reverse)