Skip to content

Commit

Permalink
Type dict
Browse files Browse the repository at this point in the history
  • Loading branch information
singiamtel committed Nov 24, 2024
1 parent 547a4db commit 94d2ad0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from unittest.mock import call, patch, MagicMock, DEFAULT
from io import StringIO
from collections import OrderedDict
from typing import Dict

from alibuild_helpers.utilities import parseRecipe, resolve_tag
from alibuild_helpers.build import doBuild, storeHashes, generate_initdotsh
Expand Down Expand Up @@ -130,7 +131,7 @@ def dummy_git(args, directory=".", check=True, prompt=True):
}[(tuple(args), directory, check)]


TIMES_ASKED = {}
TIMES_ASKED : Dict[str, int] = {}


def dummy_open(x, mode="r", encoding=None, errors=None):
Expand Down

0 comments on commit 94d2ad0

Please sign in to comment.