Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaOliphant committed Oct 15, 2023
1 parent 721cbc4 commit 0c736b6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 26 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,6 @@ avocet.sqlite
.vscode

# chroma
docs/*
docs/*

ganglion.toml
4 changes: 2 additions & 2 deletions avocet/database_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ def update_last_update(self):
session = self.Session()
update = session.query(Update).first()
if not update:
log(f"Setting update first time")
log("Setting update first time")
update = Update(last_update=datetime.now())
session.add(update)
else:
log(f"Updating last_update")
log("Updating last_update")
update.last_update = datetime.now()
session.add(update)
log(f"Committing update {update}")
Expand Down
18 changes: 0 additions & 18 deletions avocet/google_sheets.py

This file was deleted.

5 changes: 0 additions & 5 deletions ganglion.toml

This file was deleted.

0 comments on commit 0c736b6

Please sign in to comment.