Skip to content

Commit d72a17a

Browse files
committed
fix Multi-line docstring summary should start at the first line
1 parent 08c18f2 commit d72a17a

File tree

20 files changed

+21
-44
lines changed

20 files changed

+21
-44
lines changed

pymove/models/pattern_mining/clustering.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
Clustering operations.
1+
"""Clustering operations.
32
43
elbow_method,
54
gap_statistic,

pymove/preprocessing/compression.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
Compression operations.
1+
"""Compression operations.
32
43
compress_segment_stop_to_point
54

pymove/preprocessing/filters.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
Filtering operations.
1+
"""Filtering operations.
32
43
get_bbox_by_radius,
54
by_bbox,
@@ -299,7 +298,7 @@ def clean_consecutive_duplicates(
299298
----------
300299
move_data : dataframe
301300
The input trajectory data
302-
subset : Array of strs, optional
301+
subset : Array of str, optional
303302
Specifies Column label or sequence of labels, considered for
304303
identifying duplicates, by default None
305304
keep : 'first', 'last', optional

pymove/preprocessing/segmentation.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
Compression operations.
1+
"""Compression operations.
32
43
bbox_split,
54
by_dist_time_speed,

pymove/preprocessing/stay_point_detection.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
Stop point detection operations.
1+
"""Stop point detection operations.
32
43
create_or_update_move_stop_by_dist_time,
54
create_or_update_move_and_stop_by_radius
@@ -12,10 +11,7 @@
1211

1312
from pymove.preprocessing.segmentation import by_max_dist
1413
from pymove.utils.constants import (
15-
DATETIME,
1614
DIST_TO_PREV,
17-
HOUR_COS,
18-
HOUR_SIN,
1915
MOVE,
2016
SEGMENT_STOP,
2117
SITUATION,

pymove/query/query.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
Query operations.
1+
"""Query operations.
32
43
range_query,
54
knn_query

pymove/semantic/semantic.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
Semantic operations.
1+
"""Semantic operations.
32
43
outliers
54
create_or_update_out_of_the_bbox,

pymove/utils/conversions.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
Unit conversion operations.
1+
"""Unit conversion operations.
32
43
lat_meters,
54
meters_to_eps,

pymove/utils/data_augmentation.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
Data augmentation operations.
1+
"""Data augmentation operations.
32
43
append_row,
54
generate_trajectories_df,

pymove/utils/datetime.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
"""
2-
Datetime operations.
1+
"""Datetime operations.
32
43
date_to_str,
54
str_to_datetime,

0 commit comments

Comments
 (0)