From 2336eaa77a02f40d57e819ae8edff707667862f8 Mon Sep 17 00:00:00 2001 From: Antoine Vandecreme Date: Fri, 24 Apr 2026 10:44:10 +0200 Subject: [PATCH] Remove incorrect @classmethod on constructors --- biscuit_auth.pyi | 2 -- 1 file changed, 2 deletions(-) diff --git a/biscuit_auth.pyi b/biscuit_auth.pyi index 845cf58..da07790 100644 --- a/biscuit_auth.pyi +++ b/biscuit_auth.pyi @@ -482,7 +482,6 @@ class PublicKey: # :type data: str # :return: the public key # :rtype: PublicKey - @classmethod def __new__(cls, data: str) -> PublicKey: ... # ed25519 private key @@ -508,7 +507,6 @@ class PrivateKey: # :type data: str # :return: the private key # :rtype: PrivateKey - @classmethod def __new__(cls, data: str) -> PrivateKey: ... # A single datalog Fact