Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ddorian committed Feb 27, 2024
1 parent 7509e5a commit db6492e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions diskcache/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2028,8 +2028,10 @@ def create_tag_index(self):
"""
sql = self._sql
sql('CREATE INDEX IF NOT EXISTS Cache_tag_rowid ON Cache(tag, rowid) '
'WHERE tag IS NOT NULL')
sql(
'CREATE INDEX IF NOT EXISTS Cache_tag_rowid ON Cache(tag, rowid) '
'WHERE tag IS NOT NULL'
)
self.reset('tag_index', 1)

def drop_tag_index(self):
Expand Down

0 comments on commit db6492e

Please sign in to comment.