Skip to content

Commit

Permalink
fix: re-ordered parameters in ctor to avoid a breaking change (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
asafgardin authored Jan 7, 2024
1 parent c8b54df commit 6c1b608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ai21_tokenizer/jurassic_tokenizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class JurassicTokenizer(BaseTokenizer):
def __init__(
self,
model_path: Optional[PathLike] = None,
model_file_handle: Optional[BinaryIO] = None,
config: Optional[Dict[str, Any]] = None,
model_file_handle: Optional[BinaryIO] = None,
):
self._validate_init(model_path=model_path, model_file_handle=model_file_handle)

Expand Down

0 comments on commit 6c1b608

Please sign in to comment.