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

Commit

Permalink
Update import statements in tech_report_deletion.py and tech_report_p…
Browse files Browse the repository at this point in the history
…ipeline.py
  • Loading branch information
giancarloaf committed Feb 12, 2024
1 parent 24487a4 commit 7b70987
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/tech_report_deletion.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from sys import argv
import apache_beam as beam
import google.cloud.firestore as firestore
from google.cloud import firestore # pylint: disable=import-error
from apache_beam.options.pipeline_options import PipelineOptions, SetupOptions
import logging
import argparse
Expand Down
2 changes: 1 addition & 1 deletion modules/tech_report_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import hashlib
import apache_beam as beam
from apache_beam.utils import retry
import google.cloud.firestore as firestore
from google.cloud import firestore # pylint: disable=import-error
from apache_beam.options.pipeline_options import PipelineOptions, SetupOptions
import logging
import argparse
Expand Down

0 comments on commit 7b70987

Please sign in to comment.