Skip to content

Commit

Permalink
Initialize default values in PodmanCompose constructor
Browse files Browse the repository at this point in the history
Signed-off-by: legobt <[email protected]>
  • Loading branch information
legobeat committed Aug 3, 2024
1 parent 0a6e0a3 commit 9fdee76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions podman_compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -1667,11 +1667,11 @@ def __init__(self):
self.environ = {}
self.exit_code = None
self.commands = {}
self.global_args = None
self.global_args = argparse.Namespace()
self.project_name = None
self.dirname = None
self.pods = None
self.containers = None
self.containers = []
self.vols = None
self.networks = {}
self.default_net = "default"
Expand Down

0 comments on commit 9fdee76

Please sign in to comment.