less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
179 B

  1. import importlib
  2. add_bounds = importlib.import_module("add-bounds").add_bounds
  3. import sys
  4. import os
  5. path = sys.argv[1]
  6. os.makedirs(path, exist_ok=True)
  7. add_bounds(sys.argv[1])