浏览代码

Remove a useless for-else

master
Marien Fressinaud 6 年前
父节点
当前提交
8d892315ff
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1
    2
      boop.py

+ 1
- 2
boop.py 查看文件

@@ -86,8 +86,7 @@ def find_photo(photos, photo_name):
for photo in photos:
if photo["name"] == photo_name:
return photo
else:
return None
return None


def list_photos_in(gallery_dir, gallery_output_path):

正在加载...
取消
保存