Skip to content

Commit 0e87136

Browse files
committed
Expose Schema at top level
1 parent f444c8a commit 0e87136

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

clkhash/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import pkg_resources
22

33
from . import bloomfilter, field_formats, key_derivation, schema, randomnames, describe
4+
from .schema import Schema
45

56
try:
67
__version__ = pkg_resources.get_distribution('clkhash').version

clkhash/schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(self,
6767
# type: (...) -> None
6868
""" Create a Schema.
6969
:param fields: the features or field definitions
70-
:param l: The length of the resulting hash in bits. This is the
70+
:param l: The length of the resulting encoding in bits. This is the
7171
length after XOR folding.
7272
:param xor_folds: The number of XOR folds to perform on the hash.
7373
:param kdf_type: The key derivation function to use. Currently,

0 commit comments

Comments
 (0)