From: Dmitry Selyutin Date: Sun, 8 Oct 2017 19:08:56 +0000 (+0300) Subject: vfs: remove unused variable inside base VFS X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae7e0bbcf3b2494d14dfb0b02f3eca14697617e7;p=thirdparty%2Fgnulib.git vfs: remove unused variable inside base VFS --- diff --git a/pygnulib/vfs.py b/pygnulib/vfs.py index fcabeb524d..cb514fc8b3 100644 --- a/pygnulib/vfs.py +++ b/pygnulib/vfs.py @@ -20,17 +20,6 @@ from .module import File as _FileModule_ class Base: """gnulib generic virtual file system""" - _TABLE_ = { - "lib" : "source_base", - "doc" : "doc_base", - "m4" : "m4_base", - "tests" : "tests_base", - "tests=lib" : "tests_base", - "po" : "po_base", - "build-aux" : "aux_dir", - } - - def __init__(self, name, **kwargs): _type_assert_("name", name, str) path = _os_.path.realpath(name)