9 lines
138 B
Python
9 lines
138 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# pylint: disable=C0111,C0326,C0103
|
|
|
|
import os
|
|
|
|
LOGS_GLOB = os.path.join("logs", "*.xml")
|