cdxcore 0.1.10__py3-none-any.whl → 0.1.13__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cdxcore might be problematic. Click here for more details.

cdxcore/__init__.py CHANGED
@@ -4,4 +4,4 @@ Created on June 2022
4
4
  @author: hansb
5
5
  """
6
6
 
7
- __version__ = "0.1.10" # auto-updated by setup.py
7
+ __version__ = "0.1.13" # auto-updated by setup.py
cdxcore/crman.py CHANGED
@@ -147,7 +147,10 @@ class CRMan(object):
147
147
  """
148
148
  return self._current
149
149
 
150
- def write(self, text : str, end : str = '', flush : bool = True, channel : Callable = None ):
150
+ def write(self, text : str,
151
+ end : str = '',
152
+ flush : bool = True,
153
+ channel : Callable = None ):
151
154
  r"""
152
155
  Write to a ``channel``,
153
156