Skip to content

Commit c6f7276

Browse files
committed
new version
1 parent 622001b commit c6f7276

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

Diff for: anemoi/utils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# nor does it submit to any jurisdiction.
77

88

9-
__version__ = "0.1.2"
9+
__version__ = "0.1.3"

Diff for: anemoi/utils/text.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,20 @@
1515
# https://en.wikipedia.org/wiki/Box-drawing_character
1616

1717

18-
def dotted_line(n=84, file=sys.stdout):
18+
def dotted_line(n=84) -> str:
1919
"""_summary_
2020
2121
Parameters
2222
----------
2323
n : int, optional
2424
_description_, by default 84
25-
file : _type_, optional
26-
_description_, by default sys.stdout
25+
26+
Returns
27+
-------
28+
str
29+
_description_
2730
"""
28-
print("┈" * n, file=file)
31+
return "┈" * n
2932

3033

3134
def boxed(text, min_width=80, max_width=80) -> str:

0 commit comments

Comments
 (0)