Skip to content
This repository has been archived by the owner on Jun 13, 2022. It is now read-only.

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jul 5, 2021
1 parent 76e7ef5 commit 526a921
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/botadi/__init__.py
Expand Up @@ -5,7 +5,7 @@
Experiments around chatbots.
"""

__version__ = "0.2.49"
__version__ = "0.2.64"
__author__ = "Xavier Dupré"
__github__ = "https://github.com/sdpython/botadi"
__url__ = "http://www.xavierdupre.fr/app/botadi/helpsphinx/index.html"
Expand Down
2 changes: 1 addition & 1 deletion src/botadi/mokadi/mokadi_parser.py
Expand Up @@ -33,7 +33,7 @@ def print_level_order(node, indent=0):
toilette - <ErrorNodeImpl>
"""
rows = []
cl = str(type(node)).split(".")[-1].strip("'><")
cl = str(type(node)).split(".")[-1].strip("'><") # pylint: disable=C0207
if cl.endswith("Context"):
cl = cl[:-7]
rows.append('{0}{1} - <{2}>'.format(' ' * indent, node.getText(), cl))
Expand Down

0 comments on commit 526a921

Please sign in to comment.