-
-
Notifications
You must be signed in to change notification settings - Fork 111
Closed
Description
>>> import tomlkit
...
... # Convert a Python True to its TOML string representation
... toml_true_string = tomlkit.boolean(True).as_string()
... print(f"TOML string for True: {toml_true_string}")
...
... # Convert a Python False to its TOML string representation
... toml_false_string = tomlkit.boolean(False).as_string()
... print(f"TOML string for False: {toml_false_string}")
...
TOML string for True: false
TOML string for False: falseI'm using version 0.13.3.
Name: tomlkit
Version: 0.13.3
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels