File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ def main(argv=None):
7272 print (f"{ filename } : invalid recipe list" )
7373 retval = 1
7474 else :
75- if any (( ".munki" in recipe for recipe in recipe_list ) ):
75+ if any (".munki" in recipe for recipe in recipe_list ):
7676 if "MakeCatalogs" not in recipe_list [- 1 ]:
7777 print ("{}: MakeCatalogs should be the last item in the list" )
7878 retval = 1
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def main(argv=None):
4242 print ("Git config email does not look like an email address." )
4343 print ("Git config email: " + user_email )
4444 retval = 1
45- elif not any (( user_email .endswith ("@" + x ) for x in args .domains ) ):
45+ elif not any (user_email .endswith ("@" + x ) for x in args .domains ):
4646 print ("Git config email is from an unexpected domain." )
4747 print ("Git config email: " + user_email )
4848 print ("Expected domains: " + str (args .domains ))
You can’t perform that action at this time.
0 commit comments