Skip to content

Commit

Permalink
more legacy types
Browse files Browse the repository at this point in the history
  • Loading branch information
ytausch committed Apr 2, 2024
1 parent 40a68e0 commit 6ad807b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conda_smithy/lint_recipe.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import tempfile
import warnings
from collections.abc import Sequence, Mapping, Iterable
from collections.abc import Sequence, Mapping

import copy
import fnmatch
Expand All @@ -9,7 +9,7 @@
import os
import re
from pathlib import Path
from typing import Optional
from typing import Optional, Dict, Iterable

import requests
import shutil
Expand Down Expand Up @@ -153,7 +153,7 @@ def find_local_config_file(recipe_dir, filename):
return found_filesname[0] if found_filesname else None


def _lint(contents: dict, linters: Iterable[Linter]) -> LintsHints:
def _lint(contents: Dict, linters: Iterable[Linter]) -> LintsHints:
"""
Lint the contents of a file.
:param contents: the contents of the file to lint
Expand Down

0 comments on commit 6ad807b

Please sign in to comment.