diff --git a/authentik/lib/sync/outgoing/models.py b/authentik/lib/sync/outgoing/models.py index e46fb529f7d1..72657c3302ec 100644 --- a/authentik/lib/sync/outgoing/models.py +++ b/authentik/lib/sync/outgoing/models.py @@ -22,9 +22,9 @@ class OutgoingSyncProvider(Model): class Meta: abstract = True - def client_for_model[ - T: User | Group - ](self, model: type[T]) -> BaseOutgoingSyncClient[T, Any, Any, Self]: + def client_for_model[T: User | Group]( + self, model: type[T] + ) -> BaseOutgoingSyncClient[T, Any, Any, Self]: raise NotImplementedError def get_object_qs[T: User | Group](self, type: type[T]) -> QuerySet[T]: