From 7206de1f74fa0c77f85fdf1f51def86507f28103 Mon Sep 17 00:00:00 2001 From: Mikhail Gordeev Date: Mon, 6 Apr 2020 23:12:09 +0300 Subject: [PATCH] Temporarly use Any type --- cloud-build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud-build.py b/cloud-build.py index 9c2ada7..9c1fc11 100755 --- a/cloud-build.py +++ b/cloud-build.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 -from typing import Dict, List +from typing import Dict, List, Any from pathlib import Path import argparse @@ -23,7 +23,7 @@ PROG = 'cloud-build' class CB: """class for building cloud images""" - def __init__(self, args: Dict) -> None: + def __init__(self, args: Any) -> None: self.parse_config(args.config) self.args = args