Metadata-Version: 2.3
Name: dummy-decorator
Version: 1.0.0.post1
Summary: A simple python decorator that does nothing
Project-URL: Homepage, https://github.com/alexstaf/dummy-decorator
Project-URL: Issues, https://github.com/alexstaf/dummy-decorator/issues
Project-URL: Changelog, https://github.com/alexstaf/dummy-decorator/blob/main/CHANGELOG.md
Author: alexstaf
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# dummy-decorator: A simple python decorator that does nothing

If you need to make a logic when some useful decorator is optional, you can use this dummy decorator to replace it when needed.

## Installation

Use the following command to install the package:

```bash
pip install dummy-decorator
```

## Usage example

```py
from dummy_decorator import dummy_decorator

@dummy_decorator
def function():
    ...
```
