commit ef90fe7fd1130323df264314ab2d9438520d02c8
parent 72b2bd43c28c351ec678960c4f48646adaa2ac1f
Author: lash <dev@holbrook.no>
Date: Wed, 19 Apr 2023 11:42:19 +0100
Remove stray stdout output
Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG b/CHANGELOG
@@ -1,3 +1,5 @@
+- 0.3.2
+ * Remove stray stdout output
- 0.3.1
* Add option to create missing pure state from from_elements call.
- 0.3.0
diff --git a/setup.cfg b/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = shep
-version = 0.3.1
+version = 0.3.2
description = Multi-state key stores using bit masks
author = Louis Holbrook
author_email = dev@holbrook.no
diff --git a/shep/state.py b/shep/state.py
@@ -312,7 +312,6 @@ class State:
raise ValueError('elements string must start with underscore (_), got {}'.format(k))
for v in k[1:].split('__'):
state = None
- print("state {} {}".format(v, k))
try:
state = self.from_name(v)
except AttributeError as e:
@@ -322,7 +321,6 @@ class State:
if not create_missing:
raise StateInvalid(v)
state = self.add(v)
- print("state {} {} {}".format(v, k, state))
r |= state
return r