Added isort config; linter now checks tests
Some checks failed
continuous-integration/drone the build failed
Some checks failed
continuous-integration/drone the build failed
This commit is contained in:
parent
cffc928d2f
commit
e044c07cd6
9 changed files with 19 additions and 11 deletions
|
|
@ -0,0 +1 @@
|
|||
"""Main module for the app."""
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
"""Common exceptions raised by the program."""
|
||||
from typing import Union, List
|
||||
from typing import List, Union
|
||||
|
||||
|
||||
class InvalidKeyError(Exception):
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
"""Handles merging with the skeleton config."""
|
||||
from typing import Dict
|
||||
|
||||
from .exceptions import InvalidKeyError, MissingKeyError
|
||||
|
||||
|
||||
|
|
|
|||
Reference in a new issue