Skip to content

Commit acb9f21

Browse files
w1stlerWojciech Patelka
authored andcommitted
fix: add punctuation marks in all alerts (#1315)
* Add punctuation marks in all alerts * docs: add punctuation marks in all alerts --------- Co-authored-by: Wojciech Patelka <wistler@mbp-wstlr.local>
1 parent 621450d commit acb9f21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ydata_profiling/model/alerts.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ class AlertType(Enum):
5151
"""This variable has unique values."""
5252

5353
CONSTANT_LENGTH = auto()
54-
"""This variable has a constant length"""
54+
"""This variable has a constant length."""
5555

5656
REJECTED = auto()
5757
"""Variables are rejected if we do not want to consider them for further analysis."""
5858

5959
UNIFORM = auto()
60-
"""The variable is uniformly distributed"""
60+
"""The variable is uniformly distributed."""
6161

6262
NON_STATIONARY = auto()
6363
"""The variable is a non-stationary series."""
@@ -66,7 +66,7 @@ class AlertType(Enum):
6666
"""The variable is a seasonal time series."""
6767

6868
EMPTY = auto()
69-
"""The DataFrame is empty"""
69+
"""The DataFrame is empty."""
7070

7171

7272
class Alert:

0 commit comments

Comments
 (0)