Skip to content

Commit

Permalink
Remove an unused variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisgavin committed Oct 23, 2024
1 parent a01f3f5 commit 34c5a28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pycookiecheat/chrome.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ def chrome_cookies(
cookie_database_version = int(row[0])
else:
logger.info("cookie database version not found in meta table")
except sqlite3.OperationalError as e:
except sqlite3.OperationalError:
logger.info("cookie database is missing meta table")

# Check whether the column name is `secure` or `is_secure`
Expand Down

0 comments on commit 34c5a28

Please sign in to comment.