Skip to content

Commit

Permalink
chore: fixup implicit optionals for mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
kpitzen committed Nov 7, 2022
1 parent 5142d94 commit 4abde4c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sdk/python/lib/pulumi/automation/_project_settings.py
Expand Up @@ -56,7 +56,7 @@ def __init__(
self,
description: Optional[str] = None,
quickstart: Optional[str] = None,
config: Mapping[str, ProjectTemplateConfigValue] = None,
config: Optional[Mapping[str, ProjectTemplateConfigValue]] = None,
important: Optional[bool] = None,
):
self.description = description
Expand Down
4 changes: 2 additions & 2 deletions sdk/python/lib/pulumi/automation/events.py
Expand Up @@ -347,8 +347,8 @@ def __init__(
custom: Optional[bool] = None,
delete: Optional[bool] = None,
protect: Optional[bool] = None,
inputs: Mapping[str, Any] = None,
outputs: Mapping[str, Any] = None,
inputs: Optional[Mapping[str, Any]] = None,
outputs: Optional[Mapping[str, Any]] = None,
init_errors: Optional[List[str]] = None,
):
self.type = type
Expand Down
4 changes: 2 additions & 2 deletions sdk/python/lib/pulumi/resource.py
Expand Up @@ -1251,8 +1251,8 @@ def create_urn(
name: "Input[str]",
type_: "Input[str]",
parent: Optional[Union["Resource", "Input[str]"]] = None,
project: str = None,
stack: str = None,
project: Optional[str] = None,
stack: Optional[str] = None,
) -> "Output[str]":
"""
create_urn computes a URN from the combination of a resource name, resource type, optional
Expand Down

0 comments on commit 4abde4c

Please sign in to comment.