Remove warning on unused import of filepath (#4176)

This commit is contained in:
tersec 2022-09-26 17:14:24 +00:00 committed by GitHub
parent 7ac95c6ee7
commit 321c872790
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ import
# Local modules
./spec/[helpers],
./spec/datatypes/base,
"."/[beacon_clock, beacon_node_status, conf, filepath]
"."/[beacon_clock, beacon_node_status, conf]
when defined(posix):
import termios
@ -102,6 +102,7 @@ proc detectTTY*(stdoutKind: StdoutLogKind): StdoutLogKind =
when defaultChroniclesStream.outputs.type.arity == 2:
from std/os import splitFile
from "."/filepath import secureCreatePath
proc setupLogging*(
logLevel: string, stdoutKind: StdoutLogKind, logFile: Option[OutFile]) =