Skip to content

Commit

Permalink
Fix: type causing error in python3.8 <= (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryan-bar authored May 26, 2023
1 parent 3040a23 commit afeca82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edbterraform/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def save_terraform_vars(dir, filename, vars):
logger.error("ERROR: could not write %s (%s)" % (dest, e))
sys.exit(1)

def save_user_templates(project_path: Path, template_files: List[str|Path]) -> List[str]:
def save_user_templates(project_path: Path, template_files: List[str]) -> List[str]:
'''
Save any user templates into a template directory
for reuse during terraform execution and portability of directory
Expand Down

0 comments on commit afeca82

Please sign in to comment.