1
0
mirror of synced 2025-12-31 15:03:11 -05:00
Files
airbyte/airbyte-integrations/connectors/source-github/fixtures/main.py
Cole Snodgrass 2e099acc52 update headers from 2022 -> 2023 (#22594)
* It's 2023!

* 2022 -> 2023

---------

Co-authored-by: evantahler <evan@airbyte.io>
2023-02-08 13:01:16 -08:00

16 lines
331 B
Python

#
# Copyright (c) 2023 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()