beremiz
Clone
Summary
Browse
Changes
Graph
cleanup: pylint, W0109 # (duplicate-key) Duplicate key 'X' in dictionary
2018-10-03, Andrey Skvortsov
a5994ee1f6a7
cleanup: pylint, W0109 # (duplicate-key) Duplicate key 'X' in dictionary
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# See COPYING.Runtime file for copyrights details.
LogLevels = ["CRITICAL", "WARNING", "INFO", "DEBUG"]
LogLevelsCount = len(LogLevels)
LogLevelsDict = dict(zip(LogLevels, range(LogLevelsCount)))
LogLevelsDefault = LogLevelsDict["DEBUG"]