Skip to content

Commit

Permalink
Pass kwargs along to superclass (aws#3205)
Browse files Browse the repository at this point in the history
  • Loading branch information
garnaat committed Jul 5, 2019
1 parent c4bdb54 commit 6a79180
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
class %name.PascalCased%Stack(core.Stack):

def __init__(self, app: core.App, id: str, **kwargs) -> None:
super().__init__(app, id)
super().__init__(app, id, **kwargs)

# The code that defines your stack goes here

0 comments on commit 6a79180

Please sign in to comment.