Set the instance's timezone from a string or object.
(self, tz: str | Timezone | FixedTimezone)
| 355 | return tz.convert(dt) |
| 356 | |
| 357 | def in_tz(self, tz: str | Timezone | FixedTimezone) -> Self: |
| 358 | """ |
| 359 | Set the instance's timezone from a string or object. |
| 360 | """ |
| 361 | return self.in_timezone(tz) |
| 362 | |
| 363 | # STRING FORMATTING |
| 364 |