1
Fork 0
mirror of https://github.com/Steffo99/cfig.git synced 2024-10-16 14:27:38 +00:00

🧹 Cleanup some things

This commit is contained in:
Steffo 2022-04-14 04:47:19 +02:00
parent db63bf5ddd
commit d433bf486e
Signed by: steffo
GPG key ID: 6965406171929D01
2 changed files with 4 additions and 2 deletions

View file

@ -60,8 +60,11 @@ Configuration files of dependencies can be merged into the current
""" """
# noinspection PyUnresolvedReferences
from .config import * from .config import *
# noinspection PyUnresolvedReferences
from .sources import * from .sources import *
# noinspection PyUnresolvedReferences
from .errors import * from .errors import *
# noinspection PyUnresolvedReferences
from .customtyping import * from .customtyping import *

View file

@ -22,7 +22,6 @@ Configuration
A group of items. A group of items.
""" """
import os
import lazy_object_proxy import lazy_object_proxy
import typing as t import typing as t
import logging import logging