Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Only import sqlite3 when type checking (#7155)
Browse files Browse the repository at this point in the history
Fixes: #7127
Signed-off-by: David Vo <david@vovo.id.au>
  • Loading branch information
auscompgeek authored Mar 27, 2020
1 parent 7496d3d commit fbf0782
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/7155.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Avoid importing `sqlite3` when using the postgres backend. Contributed by David Vo.
7 changes: 5 additions & 2 deletions synapse/storage/engines/sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sqlite3
import struct
import threading
import typing

from synapse.storage.engines import BaseDatabaseEngine

if typing.TYPE_CHECKING:
import sqlite3 # noqa: F401

class Sqlite3Engine(BaseDatabaseEngine[sqlite3.Connection]):

class Sqlite3Engine(BaseDatabaseEngine["sqlite3.Connection"]):
def __init__(self, database_module, database_config):
super().__init__(database_module, database_config)

Expand Down

0 comments on commit fbf0782

Please sign in to comment.