Skip to content

Commit

Permalink
Fix blue check.
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Odetti <[email protected]>
  • Loading branch information
audetto committed Nov 17, 2023
1 parent ef3a72d commit cb5c836
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion diskcache/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2064,7 +2064,9 @@ def create_tag_index(self):
"""
if self.tag_index == 0:
sql = self._sql
sql('CREATE INDEX IF NOT EXISTS Cache_tag_rowid ON Cache(tag, rowid)')
sql(
'CREATE INDEX IF NOT EXISTS Cache_tag_rowid ON Cache(tag, rowid)'
)
self.reset('tag_index', 1)

def drop_tag_index(self):
Expand Down

0 comments on commit cb5c836

Please sign in to comment.