Skip to content

Commit 49c06ca

Browse files
committed
update with new tweaks
1 parent a0b6333 commit 49c06ca

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

stitch_connect_client/models/salesforce_source_form_properties.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -247,12 +247,6 @@ def frequency_in_minutes(self, frequency_in_minutes):
247247
"""
248248
if self.local_vars_configuration.client_side_validation and frequency_in_minutes is None: # noqa: E501
249249
raise ValueError("Invalid value for `frequency_in_minutes`, must not be `None`") # noqa: E501
250-
allowed_values = ["30", "60", "360", "720", "1440"] # noqa: E501
251-
if self.local_vars_configuration.client_side_validation and frequency_in_minutes not in allowed_values: # noqa: E501
252-
raise ValueError(
253-
"Invalid value for `frequency_in_minutes` ({0}), must be one of {1}" # noqa: E501
254-
.format(frequency_in_minutes, allowed_values)
255-
)
256250

257251
self._frequency_in_minutes = frequency_in_minutes
258252

0 commit comments

Comments
 (0)