From dd7e2cbcf01c261116f1eb667c76e5f88764f5e2 Mon Sep 17 00:00:00 2001 From: Neeraj Kashyap Date: Thu, 12 Aug 2021 14:40:47 -0700 Subject: [PATCH] Typo fix --- backend/moonstream/admin/subscription_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/moonstream/admin/subscription_types.py b/backend/moonstream/admin/subscription_types.py index 0e310105..e995d256 100644 --- a/backend/moonstream/admin/subscription_types.py +++ b/backend/moonstream/admin/subscription_types.py @@ -285,7 +285,7 @@ def delete_subscription_type(id: str) -> Optional[BugoutResource]: None. If multiple resources existed with the given Moonstream ID, raises a ConflictingSubscriptionTypesError and does not delete anything! """ - # COnflictingSubscriptionTypesError raised here if there are multiple resources with the given id. + # ConflictingSubscriptionTypesError raised here if there are multiple resources with the given id. resource = get_subscription_type(id) if resource is None: return None