Skip to content

Commit

Permalink
[fix] naming mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
CNSeniorious000 committed Oct 18, 2023
1 parent 0575854 commit a601ad5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "partial-json-parser"
version = "0.1.0"
version = "0.1.1"
description = "Parse partial JSON generated by LLM"
authors = [{ name = "Muspi Merol", email = "me@promplate.dev" }]
dependencies = []
Expand Down
4 changes: 2 additions & 2 deletions src/partial_json_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def skip_blank():
return parse_any()


dumps = decode = parse_json
loads = decode = parse_json


__all__ = ["dumps", "decode", "parse_json", "PartialJSON", "MalformedJSON", "Allow"]
__all__ = ["loads", "decode", "parse_json", "PartialJSON", "MalformedJSON", "Allow"]

0 comments on commit a601ad5

Please sign in to comment.