Remove unnecessary imports

This commit is contained in:
nathom 2021-04-14 18:31:24 -07:00
parent a3dda3768a
commit 8a6e5984f8

View file

@ -4,7 +4,7 @@ import logging
import os import os
import re import re
from functools import cache from functools import cache
from pprint import pformat, pprint from pprint import pformat
from ruamel.yaml import YAML from ruamel.yaml import YAML
@ -16,7 +16,6 @@ from .constants import (
TRACK_FORMAT, TRACK_FORMAT,
) )
from .exceptions import InvalidSourceError from .exceptions import InvalidSourceError
from .utils import safe_get
yaml = YAML() yaml = YAML()