Skip to content

Commit

Permalink
Remove unused YamlType
Browse files Browse the repository at this point in the history
  • Loading branch information
JimMadge committed Jul 25, 2023
1 parent 0066d7b commit 6af37b0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions data_safe_haven/utility/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
from .enums import SoftwarePackageCategory
from .file_reader import FileReader
from .logger import Logger
from .types import PathType, YamlType
from .types import PathType

__all__ = [
"FileReader",
"Logger",
"PathType",
"SoftwarePackageCategory",
"YamlType",
]
2 changes: 0 additions & 2 deletions data_safe_haven/utility/types.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from pathlib import Path
from typing import Any

PathType = str | Path
YamlType = dict[str, dict[str, Any]]

0 comments on commit 6af37b0

Please sign in to comment.