From 14582df679a011e8c741eb5dcd8126f883e1bc71 Mon Sep 17 00:00:00 2001 From: Hugo Date: Sun, 18 Mar 2018 20:03:02 +0200 Subject: Replace function call with set literal --- git/cmd.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'git/cmd.py') diff --git a/git/cmd.py b/git/cmd.py index 6b492f11..657fa7a1 100644 --- a/git/cmd.py +++ b/git/cmd.py @@ -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()) -- cgit v1.2.1