File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 77# https://docs.docker.com/compose/django/
88# https://docs.docker.com/compose/wordpress/
99# TODO: podman pod logs --color -n -f pod_testlogs
10+ from __future__ import annotations
11+
1012import argparse
1113import asyncio .subprocess
1214import getpass
@@ -297,6 +299,7 @@ def norm_as_list(src):
297299 given a dictionary {key1:value1, key2: None} or list
298300 return a list of ["key1=value1", "key2"]
299301 """
302+ dst : list [str ]
300303 if src is None :
301304 dst = []
302305 elif isinstance (src , dict ):
@@ -1659,7 +1662,7 @@ def dotenv_to_dict(dotenv_path):
16591662
16601663class PodmanCompose :
16611664 def __init__ (self ):
1662- self .podman = None
1665+ self .podman : Podman
16631666 self .podman_version = None
16641667 self .environ = {}
16651668 self .exit_code = None
You can’t perform that action at this time.
0 commit comments