(default_opt, **kwargs)
| 30 | |
| 31 | |
| 32 | def copyconf(default_opt, **kwargs): |
| 33 | conf = argparse.Namespace(**vars(default_opt)) |
| 34 | for key in kwargs: |
| 35 | print(key, kwargs[key]) |
| 36 | setattr(conf, key, kwargs[key]) |
| 37 | return conf |
| 38 | |
| 39 | |
| 40 | def tile_images(imgs, picturesPerRow=4): |
nothing calls this directly
no outgoing calls
no test coverage detected