Skip to content

Commit

Permalink
add missing type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
wolny committed Feb 19, 2024
1 parent 5816fc4 commit c5ac809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conda_devenv/devenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def merge_dependencies_version_specifications(
raise UsageError(f"Only strings and dicts are supported, got: {dep!r}")

# keep the order of dependencies
result = collections.OrderedDict()
result: dict[str, Any] = collections.OrderedDict()
for dep_name, dep_version_matchers in new_dependencies.items():
if len(dep_version_matchers) > 0:
result[dep_name + " " + ",".join(dep_version_matchers)] = None
Expand Down

0 comments on commit c5ac809

Please sign in to comment.