Skip to content

Commit

Permalink
Fix syntax warnings for tf >=0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
felixb committed Jan 1, 2020
1 parent 8e018cc commit b660118
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
variable "src_dir" {
description = "Path to root of Python source to package."
type = "string"
type = string
}

variable "output_path" {
description = "The output of the archive file."
type = "string"
}
type = string
}

0 comments on commit b660118

Please sign in to comment.