Skip to content

Commit da5ee72

Browse files
reformat
1 parent 06fc071 commit da5ee72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[MESSAGES CONTROL]
22
# C0111 missing-docstring: missing-class-docstring, missing-function-docstring, missing-method-docstring, missing-module-docstrin
33
# consider-using-with: we need it for color formatter pipe
4-
disable=too-many-lines,too-many-branches,too-many-locals,too-many-statements,too-many-arguments,too-many-instance-attributes,fixme,multiple-statements,missing-docstring,line-too-long,consider-using-f-string,consider-using-with
4+
disable=too-many-lines,too-many-branches,too-many-locals,too-many-statements,too-many-arguments,too-many-instance-attributes,fixme,multiple-statements,missing-docstring,line-too-long,consider-using-f-string,consider-using-with,unnecessary-lambda-assignment
55
# allow _ for ignored variables
66
# allow generic names like a,b,c and i,j,k,l,m,n and x,y,z
77
# allow k,v for key/value

podman_compose.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ def get_net_args(compose, cnt):
757757
net_args.extend(["--network", f"container:{other_cnt}"])
758758
else:
759759
print(f"unknown network_mode [{net}]")
760-
exit(1)
760+
sys.exit(1)
761761
proj_name = compose.project_name
762762
default_net = compose.default_net
763763
nets = compose.networks

0 commit comments

Comments
 (0)