From c5c01111ba2509b76cbcfa087d628396a7a00e1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Wed, 7 Feb 2024 18:54:31 +0100 Subject: [PATCH] Cleanup --- src/TraitExpression.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TraitExpression.ts b/src/TraitExpression.ts index 2f71cef..5170012 100644 --- a/src/TraitExpression.ts +++ b/src/TraitExpression.ts @@ -44,7 +44,7 @@ export class TraitExpression< ) { return this.allTraits.reduce( (previous, trait) => trait.apply(previous), - this.superclass as Opaque, + this.superclass, ) as any }