Skip to content

Commit 6d5100d

Browse files
committed
fix lint
1 parent fa7e365 commit 6d5100d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

samples/snippets/conftest.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from typing import Iterator, Generator
15+
from typing import Generator, Iterator
1616

17-
from google.cloud import bigquery
17+
from google.cloud import bigquery, storage
1818
import pytest
1919
import test_utils.prefixer
20-
from google.cloud import storage
2120

2221
import bigframes.pandas as bpd
2322

@@ -55,7 +54,7 @@ def project_id(bigquery_client: bigquery.Client) -> str:
5554

5655
@pytest.fixture(scope="session")
5756
def gcs_bucket(storage_client) -> Generator[str, None, None]:
58-
bucket_name = "bigframes-gcs-test"
57+
bucket_name = "bigframes-gcs-test"
5958

6059
yield bucket_name
6160

0 commit comments

Comments
 (0)