Skip to content

Commit

Permalink
Fix typing for the inputs to match reality!
Browse files Browse the repository at this point in the history
  • Loading branch information
Juha Kiili committed Jun 22, 2021
1 parent 1272e46 commit ce311dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions valohai/internals/yaml.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os
from typing import Any, Dict
from typing import Any, Dict, List

from valohai_yaml.objs.config import Config
from valohai_yaml.objs.input import Input, KeepDirectories
Expand All @@ -10,7 +10,7 @@
from valohai.internals.parsing import parse

ParameterDict = Dict[str, Any]
InputDict = Dict[str, str]
InputDict = Dict[str, List[str]]


def generate_step(
Expand Down

0 comments on commit ce311dc

Please sign in to comment.