summaryrefslogtreecommitdiff
path: root/poezio/poezio_shlex.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-07-14 16:25:09 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-07-14 16:25:09 +0200
commit20ebea1c89a00187db390443ed284e0974ff7222 (patch)
treee276ce333272f8f6e3a74c054e99c4b3ff14c7ce /poezio/poezio_shlex.py
parent3acfd83c243fe0ed0ec0b502aaabf46f9dd3aec3 (diff)
downloadpoezio-20ebea1c89a00187db390443ed284e0974ff7222.tar.gz
poezio-20ebea1c89a00187db390443ed284e0974ff7222.tar.bz2
poezio-20ebea1c89a00187db390443ed284e0974ff7222.tar.xz
poezio-20ebea1c89a00187db390443ed284e0974ff7222.zip
Stop making classes inherit from object.
Diffstat (limited to 'poezio/poezio_shlex.py')
-rw-r--r--poezio/poezio_shlex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/poezio_shlex.py b/poezio/poezio_shlex.py
index ba8d6d56..4a6c3a84 100644
--- a/poezio/poezio_shlex.py
+++ b/poezio/poezio_shlex.py
@@ -21,7 +21,7 @@ from io import StringIO
__all__ = ["shlex", "split", "quote"]
-class shlex(object):
+class shlex:
"""
A custom version of the shlex in the stdlib to yield more information
"""