Skip to content

Commit

Permalink
fix: update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jthodge committed Oct 17, 2023
1 parent b7bd096 commit 5c76ba5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import time

from datetime import timezone
from datasette.utils import tilde_decode, tilde_encode
from sqlite_utils.db import NotFoundError

root = pathlib.Path(__file__).parent.resolve()
Expand Down Expand Up @@ -59,8 +60,8 @@ def build_database(repo_path):
print(url)
print(path_slug)
print("@@" * 40)
print(datasette.utils.tilde_encode(path_slug))
print(datasette.utils.tilde_decode(path_slug))
print(tilde_encode(path_slug))
print(tilde_decode(path_slug))
print(topic)

try:
Expand Down

0 comments on commit 5c76ba5

Please sign in to comment.