This is an automated email from the ASF dual-hosted git repository. brandonwilliams pushed a commit to branch CASSANDRA-17287 in repository https://gitbox.apache.org/repos/asf/cassandra.git
commit f87e107408bc00ac1d955bee3b6f54d1f60e006d Author: Brad Schoening <[email protected]> AuthorDate: Wed Jan 26 22:42:25 2022 -0500 replaced local wcwidth with pypi package wcwidth --- pylib/cqlshlib/formatting.py | 2 +- pylib/requirements.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pylib/cqlshlib/formatting.py b/pylib/cqlshlib/formatting.py index a8ee51d..f1ca2c6 100644 --- a/pylib/cqlshlib/formatting.py +++ b/pylib/cqlshlib/formatting.py @@ -31,7 +31,7 @@ from collections import defaultdict from cassandra.cqltypes import EMPTY from cassandra.util import datetime_from_timestamp -from . import wcwidth +import wcwidth from .displaying import colorme, get_str, FormattedValue, DEFAULT_VALUE_COLORS, NO_COLOR_MAP from .util import UTC diff --git a/pylib/requirements.txt b/pylib/requirements.txt index 8dd527e..0e053a8 100644 --- a/pylib/requirements.txt +++ b/pylib/requirements.txt @@ -17,3 +17,4 @@ nose-test-select parse pycodestyle psutil +wcwidth --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
