-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Black * Fix docs, update furo
- Loading branch information
Showing
61 changed files
with
291 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Preconfigured converters for bson.""" | ||
|
||
from cattrs.preconf.bson import BsonConverter, configure_converter, make_converter | ||
|
||
__all__ = ["BsonConverter", "configure_converter", "make_converter"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Preconfigured converters for the stdlib json.""" | ||
|
||
from cattrs.preconf.json import JsonConverter, configure_converter, make_converter | ||
|
||
__all__ = ["configure_converter", "JsonConverter", "make_converter"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Preconfigured converters for msgpack.""" | ||
|
||
from cattrs.preconf.msgpack import MsgpackConverter, configure_converter, make_converter | ||
|
||
__all__ = ["configure_converter", "make_converter", "MsgpackConverter"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Preconfigured converters for orjson.""" | ||
|
||
from cattrs.preconf.orjson import OrjsonConverter, configure_converter, make_converter | ||
|
||
__all__ = ["configure_converter", "make_converter", "OrjsonConverter"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Preconfigured converters for pyyaml.""" | ||
|
||
from cattrs.preconf.pyyaml import PyyamlConverter, configure_converter, make_converter | ||
|
||
__all__ = ["configure_converter", "make_converter", "PyyamlConverter"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Preconfigured converters for tomlkit.""" | ||
|
||
from cattrs.preconf.tomlkit import TomlkitConverter, configure_converter, make_converter | ||
|
||
__all__ = ["configure_converter", "make_converter", "TomlkitConverter"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Preconfigured converters for ujson.""" | ||
|
||
from cattrs.preconf.ujson import UjsonConverter, configure_converter, make_converter | ||
|
||
__all__ = ["configure_converter", "make_converter", "UjsonConverter"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.