fix: Rename logging folder to avoid naming conflicts (and circular import issues)

This commit is contained in:
Cristian 2020-07-22 11:02:13 -05:00
parent 0965031d8f
commit a5550b2105
29 changed files with 28 additions and 28 deletions

View file

@ -10,7 +10,7 @@ from typing import List, Optional, IO
from ..main import add, docstring
from ..config import OUTPUT_DIR, ONLY_NEW
from ..logging import SmartFormatter, accept_stdin, stderr
from ..logging_util import SmartFormatter, accept_stdin, stderr
@docstring(add.__doc__)