Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
EDsCODE committed Apr 16, 2024
1 parent d5e6797 commit 1af7773
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ async def import_data_activity(inputs: ImportDataActivityInputs) -> Tuple[TSchem
from posthog.temporal.data_imports.pipelines.zendesk.helpers import zendesk_support

credentials = ZendeskCredentialsToken(

Check failure on line 127 in posthog/temporal/data_imports/workflow_activities/import_data.py

View workflow job for this annotation

GitHub Actions / Python code quality checks

Too many arguments for "ZendeskCredentialsToken"
token=model.pipeline.job_inputs.get("zendesk_api_key"),
subdomain=model.pipeline.job_inputs.get("zendesk_subdomain"),
email=model.pipeline.job_inputs.get("zendesk_email_address"),
model.pipeline.job_inputs.get("zendesk_subdomain"),
model.pipeline.job_inputs.get("zendesk_email_address"),
model.pipeline.job_inputs.get("zendesk_api_key"),
)

data_support = zendesk_support(credentials=credentials, endpoints=tuple(endpoints), team_id=inputs.team_id)
Expand Down

0 comments on commit 1af7773

Please sign in to comment.