Skip to content

Commit

Permalink
Fix(destination-duckdb): Re-lock project dependencies, resolve failin…
Browse files Browse the repository at this point in the history
…g `check` (#36884)
  • Loading branch information
aaronsteers committed Apr 7, 2024
1 parent 27e851c commit 4ac078b
Show file tree
Hide file tree
Showing 6 changed files with 441 additions and 279 deletions.
@@ -0,0 +1,15 @@
#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#

import sys

from destination_duckdb import DestinationDuckdb


def run():
DestinationDuckdb().run(sys.argv[1:])


if __name__ == "__main__":
run()
8 changes: 3 additions & 5 deletions airbyte-integrations/connectors/destination-duckdb/main.py
@@ -1,11 +1,9 @@
#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
"""Code moved to `run.py`. This file is now a placeholder for legacy reasons."""


import sys

from destination_duckdb import DestinationDuckdb
from destination_duckdb.run import run

if __name__ == "__main__":
DestinationDuckdb().run(sys.argv[1:])
run()
Expand Up @@ -4,7 +4,7 @@ data:
connectorSubtype: database
connectorType: destination
definitionId: 94bd199c-2ff0-4aa2-b98e-17f0acb72610
dockerImageTag: 0.3.2
dockerImageTag: 0.3.3
dockerRepository: airbyte/destination-duckdb
githubIssueLabel: destination-duckdb
icon: duckdb.svg
Expand Down

0 comments on commit 4ac078b

Please sign in to comment.