Skip to content

Commit

Permalink
fixing lint failures
Browse files Browse the repository at this point in the history
  • Loading branch information
reeba212 committed Oct 3, 2024
1 parent e20166d commit ee6258e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 5 additions & 3 deletions sdks/python/apache_beam/yaml/yaml_enrichment.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,16 @@
# limitations under the License.
#

from typing import Any, Dict
from typing import Any
from typing import Dict
from typing import Optional

import apache_beam as beam
from apache_beam.transforms.enrichment import Enrichment
from apache_beam.transforms.enrichment_handlers.bigquery import BigQueryEnrichmentHandler
from apache_beam.transforms.enrichment_handlers.bigtable import BigTableEnrichmentHandler
from apache_beam.transforms.enrichment_handlers.feast_feature_store import FeastFeatureStoreEnrichmentHandler
from apache_beam.transforms.enrichment_handlers.vertex_ai_feature_store import VertexAIFeatureStoreEnrichmentHandler
from apache_beam.transforms.enrichment import Enrichment
from typing import Optional


@beam.ptransform.ptransform_fn
Expand Down
6 changes: 4 additions & 2 deletions sdks/python/apache_beam/yaml/yaml_enrichment_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@
# limitations under the License.
#

import unittest
import logging
import unittest

import mock

import apache_beam as beam
from apache_beam import Row
from apache_beam.testing.util import assert_that
from apache_beam.testing.util import equal_to
from apache_beam import Row
from apache_beam.yaml.yaml_transform import YamlTransform


Expand Down

0 comments on commit ee6258e

Please sign in to comment.