Skip to content

Commit

Permalink
fix flake
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-kulak committed Jan 23, 2022
1 parent d09994f commit 06a75ef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
def chunks(data, n):
"""Yield successive n-sized chunks from lst."""
for i in range(0, len(data), n):
yield data[i:i + n]
yield data[i: i + n]


class Status(str, Enum):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import http.client
import logging
import sys
from typing import Any, Iterable, Sequence
from typing import Any

import backoff
import pendulum
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from airbyte_cdk.sources.streams.core import package_name_from_class
from airbyte_cdk.sources.utils.schema_helpers import ResourceSchemaLoader
from cached_property import cached_property
from source_facebook_marketing.streams.async_job import InsightAsyncJob, ParentAsyncJob, AsyncJob
from source_facebook_marketing.streams.async_job import InsightAsyncJob, AsyncJob
from source_facebook_marketing.streams.async_job_manager import InsightAsyncJobManager

from .streams import FBMarketingIncrementalStream
Expand Down

0 comments on commit 06a75ef

Please sign in to comment.