diff --git a/docker-app/qfieldcloud/subscription/models.py b/docker-app/qfieldcloud/subscription/models.py index 3f8b1271c..e0295bb0a 100644 --- a/docker-app/qfieldcloud/subscription/models.py +++ b/docker-app/qfieldcloud/subscription/models.py @@ -817,7 +817,7 @@ def create_subscription( TODO Python 3.11 the actual return type is Self """ if active_since: - # remove milliseconds as there will be slight shift with the remote system data + # remove microseconds as there will be slight shift with the remote system data active_since = active_since.replace(microsecond=0) if plan.is_trial: @@ -833,7 +833,6 @@ def create_subscription( plan=plan, account=account, created_by=created_by, - # TODO in the future the status can be configured in the `Plan.initial_subscription_status` status=plan.initial_subscription_status, active_since=active_since, active_until=active_until,