File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
okdata/sdk/pipelines/resources Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11import json
2+ from typing import Optional
23
34from okdata .sdk .pipelines .resources .pipeline_base import PipelineBase
45from okdata .sdk .pipelines .resources .pipeline_input import PipelineInput
@@ -34,9 +35,9 @@ def __init__(
3435 taskConfig : object = None ,
3536 # TODO: Remove this once all users have been updated to use
3637 # `pipelineProcessorId` instead.
37- pipelineArn : str = None ,
38+ pipelineArn : Optional [ str ] = None ,
3839 # TODO: Make this required once `pipelineArn` has been phased out.
39- pipelineProcessorId : str = None ,
40+ pipelineProcessorId : Optional [ str ] = None ,
4041 ):
4142 self .sdk = sdk
4243 self ._id = id
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ commands =
3232[testenv:mypy]
3333skip_install = true
3434deps =
35- mypy
35+ mypy ==0.991
3636 types-requests ==2.25.12
3737 -rrequirements.txt
3838commands =
You can’t perform that action at this time.
0 commit comments