invoice_plans: Add comment to help with testing.

This will help us run invoice plans on a specific date. Having
this in comment here would save me time adding this every time.
This commit is contained in:
Aman Agrawal 2024-04-05 11:58:08 +00:00 committed by Tim Abbott
parent a2e0c84a7e
commit 17c88de75d
1 changed files with 3 additions and 0 deletions

View File

@ -15,4 +15,7 @@ class Command(ZulipBaseCommand):
@override
def handle(self, *args: Any, **options: Any) -> None:
if settings.BILLING_ENABLED:
# Uncomment to test with a specific date.
# from datetime import datetime, timezone
# date = datetime(2024, 5, 7, tzinfo=timezone.utc)
invoice_plans_as_needed()