only returns ckpt directories if they are not none
This commit is contained in:
parent
0a8515085e
commit
659d602dce
1 changed files with 1 additions and 1 deletions
|
@ -34,5 +34,5 @@ class ExtraNetworksPageCheckpoints(ui_extra_networks.ExtraNetworksPage):
|
||||||
}
|
}
|
||||||
|
|
||||||
def allowed_directories_for_previews(self):
|
def allowed_directories_for_previews(self):
|
||||||
return [shared.cmd_opts.ckpt_dir, sd_models.model_path]
|
return [v for v in [shared.cmd_opts.ckpt_dir, sd_models.model_path] if v is not None]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue