diff --git a/fmcapi/api_objects/object_services/timeranges.py b/fmcapi/api_objects/object_services/timeranges.py index f8a8318..b98d2e2 100644 --- a/fmcapi/api_objects/object_services/timeranges.py +++ b/fmcapi/api_objects/object_services/timeranges.py @@ -13,14 +13,10 @@ class TimeRanges(APIClassTemplate): "description", "effectiveStartDateTime", "effectiveEndDateTime", - "recurrenceList" + "recurrenceList", ] VALID_FOR_KWARGS = VALID_JSON_DATA + [] - REQUIRED_FOR_POST = [ - "name", - "effectiveStartDateTime", - "effectiveEndDateTime" - ] + REQUIRED_FOR_POST = ["name", "effectiveStartDateTime", "effectiveEndDateTime"] URL_SUFFIX = "/object/timeranges" def __init__(self, fmc, **kwargs): diff --git a/setup.py b/setup.py index ebadcfd..d050ed3 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="fmcapi", - version="20240417.0", + version="20240418.0", description="Easier interface to Cisco's FMC API than writing your own way.", long_description="""With the removal to configure a Cisco NGFW via the command line your only option is to do so via a manager. Some things are better when automated so using the manager's API gives us that power.