summaryrefslogtreecommitdiff
path: root/pygnulib/GLImport.py
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2022-07-29 18:45:33 +0200
committerBruno Haible <bruno@clisp.org>2022-07-29 18:45:33 +0200
commit0bc144f96608c17963d021468f278a8d0c577894 (patch)
tree8463639f632892047246ccd40f7825555320b721 /pygnulib/GLImport.py
parent3e44e3bb0c1a91faa5b31b257c9f32fb752f8c2d (diff)
downloadgnulib-0bc144f96608c17963d021468f278a8d0c577894.tar.gz
gnulib-tool.py: Modernize coding style.
* pygnulib/*.py: Remove parentheses around return value expressions.
Diffstat (limited to 'pygnulib/GLImport.py')
-rw-r--r--pygnulib/GLImport.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/pygnulib/GLImport.py b/pygnulib/GLImport.py
index 61f700b8c5..10ad069271 100644
--- a/pygnulib/GLImport.py
+++ b/pygnulib/GLImport.py
@@ -286,7 +286,7 @@ class GLImport(object):
def __repr__(self):
'''x.__repr__ <==> repr(x)'''
result = '<pygnulib.GLImport %s>' % hex(id(self))
- return(result)
+ return result
def rewrite_old_files(self, files):
'''GLImport.rewrite_old_files(files) -> list
@@ -333,7 +333,7 @@ class GLImport(object):
path = file
result += [os.path.normpath(path)]
result = sorted(set(result))
- return(list(result))
+ return list(result)
def rewrite_new_files(self, files):
'''GLImport.rewrite_new_files(files)
@@ -379,7 +379,7 @@ class GLImport(object):
path = file
result += [os.path.normpath(path)]
result = sorted(set(result))
- return(list(result))
+ return list(result)
def actioncmd(self):
'''Return command-line invocation comment.'''
@@ -460,7 +460,7 @@ class GLImport(object):
actioncmd += ' --no-vc-files'
actioncmd += ' ' # Add a space
actioncmd += ' '.join(modules)
- return(actioncmd)
+ return actioncmd
def gnulib_cache(self):
'''GLImport.gnulib_cache() -> string
@@ -547,7 +547,7 @@ gnulib-tool.m4 macro invocations:\n''' % actioncmd
emit += 'gl_VC_FILES([%s])\n' % vc_files
if type(emit) is bytes:
emit = emit.decode(ENCS['default'])
- return(constants.nlconvert(emit))
+ return constants.nlconvert(emit)
def gnulib_comp(self, files):
'''GLImport.gnulib_comp(files) -> string
@@ -692,7 +692,7 @@ AC_DEFUN([%s_FILE_LIST], [\n''' % macro_prefix
emit += '])\n'
if type(emit) is bytes:
emit = emit.decode(ENCS['default'])
- return(emit)
+ return emit
def _done_dir_(self, directory, dirs_added, dirs_removed):
'''GLImport._done_dir_(directory, dirs_added, dirs_removed)
@@ -973,7 +973,7 @@ AC_DEFUN([%s_FILE_LIST], [\n''' % macro_prefix
# Return the result.
result = tuple([filetable, transformers])
- return(result)
+ return result
def execute(self, filetable, transformers):
'''Perform operations on the lists of files, which are given in a special