diff --git a/pycout/cout.py b/pycout/cout.py index 058242c..e5ea75f 100644 --- a/pycout/cout.py +++ b/pycout/cout.py @@ -26,5 +26,11 @@ def __lshift__(self, other: Any) -> Optional["Cout"]: def __eq__(self, other: Any) -> bool: return isinstance(other, Cout) and self.line == other.line + def __repr__(self) -> str: + return "" + + def __str__(self) -> str: + return self.line + cout = Cout() diff --git a/setup.py b/setup.py index 4f048bd..cb12a02 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="pycout", - version="1.0.0-rc2", + version="1.0.0-rc3", packages=["pycout"], url="http://github.com/EnzoBnl/pycout", license="Apache 2.",