Add missing import 'types'

The commit 6950c04614d0bd1fc9c61b79ec7e2be0d16abdc4 did the following,
but missed to import the 'types' module:

-    module = imp.new_module(name)
+    module = types.ModuleType(name)
This commit is contained in:
Carl Smedstad 2024-08-24 14:39:55 +02:00
parent 6b36ba8ae9
commit 9b27943150
No known key found for this signature in database
GPG Key ID: 49C93367BA86290E
1 changed files with 1 additions and 0 deletions

View File

@ -1,6 +1,7 @@
# vim:fileencoding=utf-8:noet
from __future__ import (unicode_literals, division, absolute_import, print_function)
import types
import sys