2👍
It’s not about efficiency but about correctness. As the error says, your datetime is naive which means the timezone of that datetime is not known. This means that other parts of your application are not able to display / convert it properly as they can’t interpret the timezone it is in.
As the documentation says:
A naive object does not contain enough information to unambiguously locate itself relative to other date/time objects. Whether a naive object represents Coordinated Universal Time (UTC), local time, or time in some other timezone is purely up to the program, just like it’s up to the program whether a particular number represents metres, miles, or mass. Naive objects are easy to understand and to work with, at the cost of ignoring some aspects of reality.