Skip to content

Commit

Permalink
remove wf
Browse files Browse the repository at this point in the history
  • Loading branch information
vinicvaz committed Feb 22, 2024
1 parent 41ec7c1 commit a26a801
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 94 deletions.
88 changes: 0 additions & 88 deletions .github/workflows/validate-and-organize-dev.yml

This file was deleted.

9 changes: 3 additions & 6 deletions pieces/EmailSenderPiece/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from pydantic import BaseModel, Field
from enum import Enum
from typing import List, Optional, Union, Field
from typing import List, Optional, Union



class ProviderType(str, Enum):
Expand All @@ -15,11 +16,7 @@ class InnerArgModel(BaseModel):
Inner argument model to use in the body and subject texts
"""
arg_name: str
arg_value: Union[str, int, float, bool] = Field(
json_schema_extra={
"from_upstream": "always"
}
)
arg_value: Optional[str] = Field(default='arg value')


class InputModel(BaseModel):
Expand Down

0 comments on commit a26a801

Please sign in to comment.