beremiz
Clone
Summary
Browse
Changes
Graph
IDE: fix py3/wxpy4 related deprecation warnings
2023-07-25, Edouard Tisserant
73a44957c381
IDE: fix py3/wxpy4 related deprecation warnings
#!/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"]