Added isort config; linter now checks tests
Some checks failed
continuous-integration/drone the build failed

This commit is contained in:
Jef Roosens 2021-05-22 18:41:57 +02:00
parent cffc928d2f
commit e044c07cd6
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F
9 changed files with 19 additions and 11 deletions

View file

@ -0,0 +1 @@
"""Main module for the app."""

View file

@ -1,5 +1,5 @@
"""Common exceptions raised by the program."""
from typing import Union, List
from typing import List, Union
class InvalidKeyError(Exception):

View file

@ -1,5 +1,6 @@
"""Handles merging with the skeleton config."""
from typing import Dict
from .exceptions import InvalidKeyError, MissingKeyError