Use type comments to support older python3 interpreters that can't
handle type hints (such as 3.4).
Change-Id: I4f97bc3f1e18b8701cb04175d97deb295178883b
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
test_app_args = [str(binary_path)]
- self._process: subprocess.Popen = subprocess.Popen(
+ self._process = subprocess.Popen(
test_app_args, env=test_app_env
- )
+ ) # type: subprocess.Popen
def wait_for_exit(self):
# type: () -> None