Skip to content
Snippets Groups Projects
Verified Commit 7456343e authored by Timm Fitschen's avatar Timm Fitschen
Browse files

DOC: update CHANGELOG

parent 37d136a8
No related branches found
No related tags found
2 merge requests!71Release 0.9,!65BUG: setup timezone in deploy
Pipeline #27771 passed
......@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added ###
* Add TimeZone class and parse the server's time zone in the Info response.
### Changed ###
* Set PyYAML dependency back to PyYaml>=5.4.1 (from 6.0) for better
......
class TimeZone():
"""
TimeZone, e.g. CEST, Europe/Berlin, UTC+4.
Attributes
----------
zone_id : string
ID of the time zone.
offset : int
Offset to UTC in seconds.
display_name : string
A human-friendly name of the time zone:
"""
def __init__(self, zone_id, offset, display_name):
self.zone_id = zone_id
self.offset = offset
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment