Skip to content

Commit

Permalink
v3.1.1 - Removes an incorrect type hint (#13)
Browse files Browse the repository at this point in the history
* removes an incorrect type hint
  • Loading branch information
jontsai authored Dec 14, 2021
1 parent 1e9d5dd commit 977a85b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

## v3.1.1 (2021.12-13)
- Removes an incorrect type hint

## v3.1.0 (2021-12-13)
- Fixes metric aggregation by customer, service, and owner (#12)
- Fixes `start_of_month` by simply using `1`, instead of `calendar.monthrange[0]`, (#11)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.0
3.1.1
2 changes: 1 addition & 1 deletion phablytics/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '3.1.0'
__version__ = '3.1.1'
8 changes: 4 additions & 4 deletions phablytics/metrics/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@ def _get_aggregated_stats(self):

aggregated_stats = AggregatedTaskMetricsStats(
metric_cls,
period_start: datetime.datetime,
period_end: datetime.datetime,
tasks_created: list,
tasks_closed: list
period_start,
period_end,
tasks_created,
tasks_closed
)

return aggregated_stats
Expand Down

0 comments on commit 977a85b

Please sign in to comment.