This rule raises an issue when trying to perform comparison or arithmetic operations between `offset-naive` and `offset-aware` Datetimes.
== Why is this an issue?
`datetime.datetime` and `datetime.time` objects may be categorized as "aware" or "naive" depending on whether or not they include timezone information.
Comparison or arithmetic operations between `offset-naive` and `offset-aware` datetimes raise a `TypeError`.
== How to fix it
Perform comparison or arithmetic operations only between offset-naive or only between offset-aware Datetimes.