Browse Source

括弧の対応がをかしかったので修正(コミット前に MyPy チェックして)

feature/query
みてるぞ 1 month ago
parent
commit
faf3b44745
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      update_db.py

+ 1
- 1
update_db.py View File

@@ -661,7 +661,7 @@ class VideoTagDao:
untagged_at = %%s
WHERE
video_id = %%s
AND tag_id IN (%s)""" % ', '.join (['%s'] * len (tag_ids)), (now, video_id, *tag_ids)))
AND tag_id IN (%s)""" % ', '.join (['%s'] * len (tag_ids)), (now, video_id, *tag_ids))

def _create_dto_from_row (
self,


Loading…
Cancel
Save