Add some typing

This commit is contained in:
Ayaz Salikhov
2021-05-03 00:54:52 +03:00
parent 7d7bbba09f
commit 2172a9ab16
7 changed files with 40 additions and 30 deletions

View File

@@ -11,7 +11,7 @@ from .get_taggers_and_manifests import get_taggers_and_manifests
logger = logging.getLogger(__name__)
def tag_image(short_image_name, owner):
def tag_image(short_image_name: str, owner: str) -> None:
logger.info(f"Tagging image: {short_image_name}")
taggers, _ = get_taggers_and_manifests(short_image_name)