update rethinkdb import

This commit is contained in:
Barbara Miller 2023-09-12 14:39:09 -07:00
parent 5e779af2e9
commit 3b5d9d8ef0
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ import hashlib
import threading import threading
import datetime import datetime
import doublethink import doublethink
import rethinkdb as r from rethinkdb import RethinkDB; r = RethinkDB()
from warcprox.dedup import DedupableMixin from warcprox.dedup import DedupableMixin
class RethinkCaptures: class RethinkCaptures:

View File

@ -29,7 +29,7 @@ import doublethink
import json import json
import logging import logging
import os import os
import rethinkdb as r from rethinkdb import RethinkDB; r = RethinkDB()
import sqlite3 import sqlite3
import threading import threading
import time import time