Skip to content

Commit

Permalink
default instead of requiring
Browse files Browse the repository at this point in the history
  • Loading branch information
pnadolny13 committed Apr 3, 2023
1 parent 359881e commit 5eba4e8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions target_s3/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,25 +65,27 @@ class Targets3(Target):
"append_date_to_prefix",
th.BooleanType,
description="A flag to append the date to the key prefix.",
default=True,
),
th.Property(
"append_date_to_prefix_grain",
th.StringType,
description="The grain of the date to append to the prefix.",
allowed_values=DATE_GRAIN.keys(),
required=True,
default="day",
),
th.Property(
"append_date_to_filename",
th.BooleanType,
description="A flag to append the date to the key filename.",
default=True,
),
th.Property(
"append_date_to_filename_grain",
th.StringType,
description="The grain of the date to append to the filename.",
allowed_values=DATE_GRAIN.keys(),
required=True,
default="day",
),
th.Property(
"format_type",
Expand Down

0 comments on commit 5eba4e8

Please sign in to comment.