Skip to content

Commit 92a0b7e

Browse files
committed
Fix: Misc cleanup
1 parent 1bcb440 commit 92a0b7e

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

Diff for: airbyte/__init__.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Copyright (c) 2024 Airbyte, Inc., all rights reserved.
2-
"""PyAirbyte brings Airbyte ELT to every Python developer.
3-
4-
PyAirbyte brings the power of Airbyte to every Python developer. PyAirbyte provides a set of
5-
utilities to use Airbyte connectors in Python.
2+
"""***PyAirbyte brings the power of Airbyte to every Python developer.***
63
74
[![PyPI version](https://badge.fury.io/py/airbyte.svg)](https://badge.fury.io/py/airbyte)
85
[![PyPI - Downloads](https://img.shields.io/pypi/dm/airbyte)](https://pypi.org/project/airbyte/)
@@ -121,7 +118,7 @@
121118
122119
----------------------
123120
124-
"""
121+
""" # noqa: D415
125122

126123
from __future__ import annotations
127124

Diff for: airbyte/destinations/base.py

-3
Original file line numberDiff line numberDiff line change
@@ -293,10 +293,7 @@ def _write_airbyte_message_stream(
293293
)
294294
):
295295
if destination_message.type is Type.STATE:
296-
tmp = state_writer.known_stream_names
297296
state_writer.write_state(state_message=destination_message.state)
298-
# TODO: DELETEME
299-
assert tmp.issubset(state_writer.known_stream_names)
300297

301298
except exc.AirbyteConnectorFailedError as ex:
302299
raise exc.AirbyteConnectorWriteError(

0 commit comments

Comments
 (0)