We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa7e365 commit 6d5100dCopy full SHA for 6d5100d
samples/snippets/conftest.py
@@ -12,12 +12,11 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-from typing import Iterator, Generator
+from typing import Generator, Iterator
16
17
-from google.cloud import bigquery
+from google.cloud import bigquery, storage
18
import pytest
19
import test_utils.prefixer
20
-from google.cloud import storage
21
22
import bigframes.pandas as bpd
23
@@ -55,7 +54,7 @@ def project_id(bigquery_client: bigquery.Client) -> str:
55
54
56
@pytest.fixture(scope="session")
57
def gcs_bucket(storage_client) -> Generator[str, None, None]:
58
- bucket_name = "bigframes-gcs-test"
+ bucket_name = "bigframes-gcs-test"
59
60
yield bucket_name
61
0 commit comments