add '__metaclass__ = type' to integration python files

This commit is contained in:
Simon Kelly 2020-10-16 16:04:03 +02:00
parent be6215014b
commit 8dc7e9af64
2 changed files with 2 additions and 0 deletions

View file

@ -2,6 +2,7 @@
http://www.jejik.com/files/examples/daemon3x.py
"""
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import atexit
import os

View file

@ -1,4 +1,5 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import sys
from daemon import Daemon