Skip to content

Commit

Permalink
Remove unused ShamirRevealToken type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
vxgmichel committed Nov 8, 2024
1 parent 625d999 commit db4f94d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
2 changes: 0 additions & 2 deletions server/parsec/_parsec.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ from parsec._parsec_pyi.ids import (
InvitationToken,
OrganizationID,
SequesterServiceID,
ShamirRevealToken,
UserID,
VlobID,
)
Expand Down Expand Up @@ -158,7 +157,6 @@ __all__ = [
"EnrollmentID",
"BootstrapToken",
"InvitationToken",
"ShamirRevealToken",
"GreetingAttemptID",
# Addrs
"ParsecAddr",
Expand Down
17 changes: 0 additions & 17 deletions server/parsec/_parsec_pyi/ids.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -252,23 +252,6 @@ class BootstrapToken:
@property
def hyphenated(self) -> str: ...

class ShamirRevealToken:
def __hash__(self) -> int: ...
@classmethod
def from_bytes(cls, bytes: bytes) -> ShamirRevealToken: ...
@classmethod
def from_hex(cls, hex: str) -> ShamirRevealToken: ...
@classmethod
def new(cls) -> ShamirRevealToken: ...
@property
def bytes(self) -> bytes: ...
@property
def hex(self) -> str: ...
@property
def int(self) -> int: ...
@property
def hyphenated(self) -> str: ...

class GreetingAttemptID:
def __lt__(self, other: GreetingAttemptID) -> bool: ...
def __gt__(self, other: GreetingAttemptID) -> bool: ...
Expand Down

0 comments on commit db4f94d

Please sign in to comment.