We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae2060c commit af52028Copy full SHA for af52028
1 file changed
discoart/config.py
@@ -53,7 +53,7 @@ def load_config(
53
cfg.update(**user_config)
54
55
int_keys = {k for k, v in default_args.items() if isinstance(v, int)}
56
- int_keys.add('seed')
+ int_keys = int_keys.union({'seed', 'cut_overview', 'cut_innercut'})
57
58
for k, v in cfg.items():
59
if k in int_keys and v is not None and not isinstance(v, (int, str)):
0 commit comments