Skip to content

Commit 977a85b

Browse files
authored
v3.1.1 - Removes an incorrect type hint (#13)
* removes an incorrect type hint
1 parent 1e9d5dd commit 977a85b

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
## v3.1.1 (2021.12-13)
4+
- Removes an incorrect type hint
5+
36
## v3.1.0 (2021-12-13)
47
- Fixes metric aggregation by customer, service, and owner (#12)
58
- Fixes `start_of_month` by simply using `1`, instead of `calendar.monthrange[0]`, (#11)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.0
1+
3.1.1

phablytics/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.1.0'
1+
__version__ = '3.1.1'

phablytics/metrics/stats.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ def _get_aggregated_stats(self):
9494

9595
aggregated_stats = AggregatedTaskMetricsStats(
9696
metric_cls,
97-
period_start: datetime.datetime,
98-
period_end: datetime.datetime,
99-
tasks_created: list,
100-
tasks_closed: list
97+
period_start,
98+
period_end,
99+
tasks_created,
100+
tasks_closed
101101
)
102102

103103
return aggregated_stats

0 commit comments

Comments
 (0)