From c2a2abb5972e93403341ca5c04b5232becca8e8e Mon Sep 17 00:00:00 2001 From: JacksonMaxfield Date: Wed, 15 Jun 2022 14:07:32 -0700 Subject: [PATCH] Lint and format --- cdp_backend/infrastructure/cdp_stack.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cdp_backend/infrastructure/cdp_stack.py b/cdp_backend/infrastructure/cdp_stack.py index e923eee6..412566f4 100644 --- a/cdp_backend/infrastructure/cdp_stack.py +++ b/cdp_backend/infrastructure/cdp_stack.py @@ -2,6 +2,7 @@ # -*- coding: utf-8 -*- import json +from typing import List import pulumi import pulumi_gcp as gcp @@ -206,7 +207,7 @@ def __init__( # Create depends on list # We don't want to create a ton of indexes in parallel if prior_index is None: - depends_on = [] + depends_on: List[pulumi.Resource] = [] else: depends_on = [prior_index]