Here’s my code that resulted in the error above: `...
# general
s
Here’s my code that resulted in the error above:
Copy code
github_repo_webhook = github.RepositoryWebhook(
    "github-repo-webhook",
    active=True,
    events=["push"],
    repository='https://<snip>/security/jupyterhub.git',
    configuration={
        "url": codebuild_webhook.payload_url,
        "secret": codebuild_webhook.secret,
        "contentType": "json",
        "insecureSsl": False,
    })