Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
aarushik93 committed Nov 27, 2024
1 parent 3715791 commit b84dda7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion autogpt_platform/backend/backend/blocks/hubspot/company.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Input(BlockSchema):
description="Company data for create/update operations", default={}
)
domain: str = SchemaField(
description="Company domain for get/update operations", default={}
description="Company domain for get/update operations", default=""
)

class Output(BlockSchema):
Expand Down
2 changes: 1 addition & 1 deletion autogpt_platform/backend/backend/blocks/hubspot/contact.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Input(BlockSchema):
description="Contact data for create/update operations", default={}
)
email: str = SchemaField(
description="Email address for get/update operations", default={}
description="Email address for get/update operations", default=""
)

class Output(BlockSchema):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const providerDisplayNames: Record<CredentialsProviderName, string> = {
replicate: "Replicate",
revid: "Rev.ID",
unreal_speech: "Unreal Speech",
hubspot: "Hubspot"
hubspot: "Hubspot",
} as const;
// --8<-- [end:CredentialsProviderNames]

Expand Down

0 comments on commit b84dda7

Please sign in to comment.