Metadata-Version: 2.1
Name: consumable
Version: 1.1.3
Summary: Bool that resets on use.
License: GPL-3.0-only
Author: taitep
Author-email: taitep@taitep.se
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Description-Content-Type: text/markdown

# Consumable

Bool that resets to false after use.

## Example

```py
from consumable import Consumable

consumable = Consumable(True)

if consumable:
    print("Consumable is true!!")

if consumable:
    print("Consumable is true!! Should not happen.")
```

