diff options
author | Hugo <hugovk@users.noreply.github.com> | 2018-03-18 20:03:02 +0200 |
---|---|---|
committer | Hugo <hugovk@users.noreply.github.com> | 2018-03-18 22:26:30 +0200 |
commit | 14582df679a011e8c741eb5dcd8126f883e1bc71 (patch) | |
tree | 3739015c0a76d9a3599a770888cb3bde4640f702 /git/cmd.py | |
parent | 929f3e1e1b664ed8cdef90a40c96804edfd08d59 (diff) | |
download | gitpython-14582df679a011e8c741eb5dcd8126f883e1bc71.tar.gz |
Replace function call with set literal
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -44,10 +44,10 @@ from .util import ( ) -execute_kwargs = set(('istream', 'with_extended_output', - 'with_exceptions', 'as_process', 'stdout_as_string', - 'output_stream', 'with_stdout', 'kill_after_timeout', - 'universal_newlines', 'shell', 'env')) +execute_kwargs = {'istream', 'with_extended_output', 'with_exceptions', + 'as_process', 'stdout_as_string', 'output_stream', + 'with_stdout', 'kill_after_timeout', 'universal_newlines', + 'shell', 'env'} log = logging.getLogger(__name__) log.addHandler(logging.NullHandler()) |