From 6bf8a29b66ed096fa2cf0a519be4c26d0c7f1cd9 Mon Sep 17 00:00:00 2001 From: Christian Hill Date: Mon, 4 Jul 2022 16:53:39 +0100 Subject: [PATCH] Bump to 2.5.9 --- setup.py | 2 +- src/pyvalem/states/key_value_pair.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 362a263..a3cf6c8 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pyvalem", - version="2.5.8", + version="2.5.9", description="A package for managing simple chemical species and states", long_description=long_description, long_description_content_type="text/x-rst", diff --git a/src/pyvalem/states/key_value_pair.py b/src/pyvalem/states/key_value_pair.py index 9b88904..8336e26 100644 --- a/src/pyvalem/states/key_value_pair.py +++ b/src/pyvalem/states/key_value_pair.py @@ -55,8 +55,8 @@ def __repr__(self): @property def ordering(self): if self.key == "n": - # Move up n to the first position for ordering by replacing it with - # a space (ASCII 32, the first printable character and not a real valid - # key. + # Move up n to the first position for ordering by replacing it with + # a space (ASCII 32, the first printable character and not a real valid + # key. return " " return self.key