Skip to content

Commit e80521f

Browse files
committed
Made package's public objects explicit
1 parent 6672cc4 commit e80521f

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

fcs/__init__.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
from .fcs import (
2-
FCS,
3-
Commitment,
4-
)
1+
"""FCS: Fuzzy Commitment Scheme"""
2+
from .fcs import FCS, Commitment
3+
4+
5+
__all__ = ['FCS', 'Commitment']

fcs/fcs.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"""TODO
2-
"""
31
import hashlib
42
import secrets
53
from typing import Any, Callable, Generic, Optional, TypeVar

0 commit comments

Comments
 (0)