Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/monitor/azure-monitor-query/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 1.0.2 (Unreleased)

- This version and all future versions will require Python 3.7+. Python 2.7 and 3.6 are no longer supported.
- This version and all future versions will require Python 3.6+. Python 2.7 is no longer supported.

### Bugs Fixed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def native_col_type(col_type, value):
if col_type == "datetime":
try:
value = Deserializer.deserialize_iso(value)
except: # pylint: disable=bare-except
except Exception: # pylint: disable=broad-except
# if there is any exception in deserializing the iso,
# return the value to the user
pass
Expand Down