Skip to content

Commit

Permalink
Merge pull request #1594 from thican/dev/fix_data_reading
Browse files Browse the repository at this point in the history
Fix returned type around datetime
  • Loading branch information
jertel authored Dec 23, 2024
2 parents b1680e6 + 1e0a770 commit 858f9cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

## Other changes
- [Docs] Add missing documentation of the `aggregation_alert_time_compared_with_timestamp_field` option. - [#1588](https://github.com/jertel/elastalert2/pull/1588) - @nicolasnovelli
- Fix linter error reporting about return type assignation in `elastalert/test_rule.py`. - [#1594](https://github.com/jertel/elastalert2/pull/1594) - @thican

# 2.22.0

Expand Down
4 changes: 2 additions & 2 deletions elastalert/test_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def _parse_args(self, args: list) -> argparse.Namespace:

return parsed_args

def str_to_ts(self, input: str) -> datetime:
def str_to_ts(self, input: str) -> datetime.datetime:
if input == "NOW":
return self.ts_now

Expand All @@ -148,7 +148,7 @@ def str_to_ts(self, input: str) -> datetime:
f"Input is not a valid ISO8601 timestamp (YYYY-MM-DDTHH:MM:SS+XX:00): {input}"
)

def parse_starttime(self, timeframe=None) -> datetime:
def parse_starttime(self, timeframe=None) -> datetime.datetime:
if self.args.start:
try:
return self.str_to_ts(self.args.start)
Expand Down

0 comments on commit 858f9cc

Please sign in to comment.