Skip to content

Commit

Permalink
Lint and format
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonMaxfield committed Jun 15, 2022
1 parent d12813b commit c2a2abb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cdp_backend/infrastructure/cdp_stack.py
Expand Up @@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-

import json
from typing import List

import pulumi
import pulumi_gcp as gcp
Expand Down Expand Up @@ -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]

Expand Down

0 comments on commit c2a2abb

Please sign in to comment.