Temporarly use Any type

This commit is contained in:
Mikhail Gordeev 2020-04-06 23:12:09 +03:00
parent ce034648c2
commit 7206de1f74

View File

@ -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