Skip to content

Commit 802d4e6

Browse files
committed
feat: update v0.9.3
1 parent a3b2ca7 commit 802d4e6

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Overview
66

7-
Welcome to version 0.7 of the `timeanalysismoon` Python package! This release introduces a decorator designed to measure and print the execution time of functions, providing a simple and effective way to profile your Python code.
7+
Welcome to version 0.9.3 of the `timeanalysismoon` Python package! This release introduces a decorator designed to measure and print the execution time of functions, providing a simple and effective way to profile your Python code.
88

99
## Key Features
1010

@@ -32,7 +32,7 @@ pip install timeanalysismoon
3232
or
3333

3434
```bash
35-
pip install timeanalysismoon==0.7
35+
pip install timeanalysismoon==0.9.3
3636
```
3737

3838
## Compatibility
@@ -52,6 +52,6 @@ This package is released under the MIT License. See the [LICENSE](https://github
5252

5353
### Author
5454
- CoderMungan
55-
- Pypi.org: [https://pypi.org/project/timeanalysismoon/0.7/](https://pypi.org/project/timeanalysismoon/0.7/)
55+
- Pypi.org: [https://pypi.org/project/timeanalysismoon/0.9.3/](https://pypi.org/project/timeanalysismoon/0.9.3/)
5656
5757
- Github: [CoderMungan](https://github.com/CoderMungan)

timeanalysismoon/decorator.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,7 @@ def wrapper(*args, **kwargs):
4444
@timeanalysismoon
4545
def example():
4646
pass
47+
48+
example()
4749
4850
"""

0 commit comments

Comments
 (0)