Fix Python 3.10 compatability

This commit is contained in:
Thor77 2023-01-14 12:16:21 +01:00 committed by Jonas Seydel
parent 0a443467be
commit 8223c389d3
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import datetime import datetime
import logging import logging
from collections import MutableMapping from collections.abc import MutableMapping
logger = logging.getLogger('tsstats') logger = logging.getLogger('tsstats')