We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d66e682 commit 29fd381Copy full SHA for 29fd381
README.md
@@ -523,7 +523,7 @@ import pytz
523
```python
524
<tz> = pytz.timezone('<Continent>/<City>') # Use 'pytz.utc' for UTC.
525
<DTa> = <DT>.astimezone(<tz>) # Converts datetime to passed timezone.
526
-<Ta/DTa> = <T/DT>.replace(tzinfo=<timezone>) # Changes timezone without conversion.
+<Ta/DTa> = <T/DT>.replace(tzinfo=<tz>) # Changes timezone without conversion.
527
<timedelta> = <T/DT>.utcoffset() # Returns timezone's current offset from UTC.
528
<timedelta> = <T/DT>.dst() # Returns daylight saving time offset.
529
```
0 commit comments