summaryrefslogtreecommitdiff
path: root/dbus
diff options
context:
space:
mode:
Diffstat (limited to 'dbus')
-rw-r--r--dbus/types.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/dbus/types.py b/dbus/types.py
index a134495..c33acff 100644
--- a/dbus/types.py
+++ b/dbus/types.py
@@ -1,7 +1,7 @@
-__all__ = ('ObjectPath', 'ByteArray', 'Signature', 'Byte', 'Boolean',
+__all__ = ['ObjectPath', 'ByteArray', 'Signature', 'Byte', 'Boolean',
'Int16', 'UInt16', 'Int32', 'UInt32', 'Int64', 'UInt64',
'Double', 'String', 'Array', 'Struct', 'Dictionary',
- 'UTF8String', 'UnixFd')
+ 'UnixFd']
from _dbus_bindings import (
Array, Boolean, Byte, ByteArray, Dictionary, Double, Int16, Int32, Int64,
@@ -11,3 +11,4 @@ from _dbus_bindings import (
from dbus._compat import is_py2
if is_py2:
from _dbus_bindings import UTF8String
+ __all__.append('UTF8String')