Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d704422

Browse files
committed
Add missing imports.
1 parent 30288ae commit d704422

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

sdks/python/apache_beam/io/aws/s3filesystem.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"""S3 file system implementation for accessing files on AWS S3."""
1919

2020
# pytype: skip-file
21+
import traceback
2122

2223
from apache_beam.io.aws import s3io
2324
from apache_beam.io.filesystem import BeamIOError

sdks/python/apache_beam/io/azure/blobstoragefilesystem.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"""Azure Blob Storage Implementation for accesing files on
1919
Azure Blob Storage.
2020
"""
21+
import traceback
2122

2223
from apache_beam.io.azure import blobstorageio
2324
from apache_beam.io.filesystem import BeamIOError

sdks/python/apache_beam/io/gcp/gcsfilesystem.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
# pytype: skip-file
2828

29+
import traceback
2930
from typing import BinaryIO # pylint: disable=unused-import
3031

3132
from apache_beam.io.filesystem import BeamIOError

0 commit comments

Comments
 (0)