Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
asikowitz committed Aug 28, 2023
1 parent b76f2ab commit ef6446d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from pydantic import Field

from datahub.configuration.kafka import KafkaConsumerConnectionConfig
from datahub.ingestion.source.sql.mysql import MySQLConnectionConfig
from datahub.ingestion.source.sql.sql_config import SQLAlchemyConnectionConfig
from datahub.ingestion.source.state.stateful_ingestion_base import (
StatefulIngestionConfig,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def _get_kafka_workunits(
if self.config.kafka_connection is None:
return

logger.info(f"Fetching timeseries aspects from kafka")
logger.info("Fetching timeseries aspects from kafka")
with DataHubKafkaReader(
self.config, self.config.kafka_connection, self.report, self.ctx
) as reader:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from datetime import timezone, datetime

from dataclasses import dataclass, field
from datetime import datetime, timezone

from datahub.ingestion.source.state.stateful_ingestion_base import (
StatefulIngestionReport,
Expand Down

0 comments on commit ef6446d

Please sign in to comment.