Skip to content

Commit

Permalink
Fix connection form (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajastro authored Dec 18, 2023
1 parent 8d1dc6b commit b15e9c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 0 additions & 4 deletions fivetran_provider_async/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ def get_provider_info():
"name": "Fivetran Async Provider",
"description": "A Fivetran Async provider for Apache Airflow.",
"connection-types": [
{
"hook-class-name": "fivetran_provider_async.hooks.FivetranHookAsync",
"connection-type": "Fivetran",
},
{
"hook-class-name": "fivetran_provider_async.hooks.FivetranHook",
"connection-type": "Fivetran",
Expand Down
2 changes: 1 addition & 1 deletion fivetran_provider_async/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class FivetranHook(BaseHook):

conn_name_attr = "fivetran_conn_id"
default_conn_name = "fivetran_default"
conn_type = "fivetran"
conn_type = "Fivetran"
hook_name = "Fivetran"
api_user_agent = "airflow_provider_fivetran/1.1.4"
api_protocol = "https"
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ testpaths = [
[tool.isort]
profile = "black"
multi_line_output = 3

[tool.distutils.bdist_wheel]
universal = true

0 comments on commit b15e9c6

Please sign in to comment.