Skip to content

Commit 485f509

Browse files
authored
Merge pull request #174 from urasakikeisuke/main
Fixed an error
2 parents f20f0eb + a60f5e2 commit 485f509

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deep_daze/deep_daze.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ def __init__(
400400
self.start_image_lr = start_image_lr
401401
if exists(start_image_path):
402402
file = Path(start_image_path)
403-
assert file.exists(), f'file does not exist at given starting image path {self.start_image_path}'
403+
assert file.exists(), f'file does not exist at given starting image path {start_image_path}'
404404
image = Image.open(str(file))
405405
start_img_transform = T.Compose([T.Resize(image_width),
406406
T.CenterCrop((image_width, image_width)),

0 commit comments

Comments
 (0)