Skip to content

Commit 40224b0

Browse files
committed
decorators/__init__.py sort alphabetically
Signed-off-by: Maria Teresa Ortega <teresa.ortega0903@gmail.com>
1 parent 927de2f commit 40224b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lambkin/core/decorators/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@
1616
1717
Provides the decorators used to define and configure benchmark functions:
1818
19-
- @lambkin.option : registers CLI options so the @benchmark decorator can inject
20-
them into "ctx.options".
21-
2219
- @lambkin.benchmark : It collects CLI option definitions registered by @option,
2320
parses them once before the loop using an internal click parser, and injects
2421
the resulting values into a Context class on each (variant, iteration)
22+
23+
- @lambkin.option : registers CLI options so the @benchmark decorator can inject
24+
them into "ctx.options".
2525
"""
2626

2727
from .benchmark import benchmark
2828
from .option import option
2929

3030
__all__ = [
31-
"option",
3231
"benchmark",
32+
"option",
3333
]

0 commit comments

Comments
 (0)