Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Sep 27, 2023
1 parent 37e026b commit 15a2d0c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pandas/tests/io/test_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
from io import StringIO
from pathlib import Path
import sqlite3
from typing import TYPE_CHECKING
import uuid

import numpy as np
import pytest
import sqlalchemy

from pandas._libs import lib
import pandas.util._test_decorators as td
Expand Down Expand Up @@ -52,6 +52,9 @@
read_sql_table,
)

if TYPE_CHECKING:
import sqlalchemy


@pytest.fixture
def sql_strings():
Expand Down Expand Up @@ -83,6 +86,7 @@ def sql_strings():


def iris_table_metadata():
import sqlalchemy
from sqlalchemy import (
Column,
Double,
Expand Down

0 comments on commit 15a2d0c

Please sign in to comment.