1
0
mirror of synced 2026-01-29 13:02:00 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/fixtures/main.py
Marcos Marx dca2256a7c Bump 2022 license version (#13233)
* Bump year in license short to 2022

* remove protocol from cdk
2022-05-26 15:00:42 -03:00

16 lines
331 B
Python

#
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
#
# type: ignore
# this is just a script that doesn't need mypy linting
import sys
from github import GitHubFiller
if __name__ == "__main__":
api_token = sys.argv[1]
repository = sys.argv[2]
executor = GitHubFiller(api_token, repository)
executor.run()