mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Use absolute imports
In Python 3, implicit relative imports will not be supported. Use fully-qualified imports everywhere. Reviewed-By: Tomas Babej <tbabej@redhat.com>
This commit is contained in:
committed by
Tomas Babej
parent
262faec70a
commit
5435a8a32a
@@ -23,9 +23,10 @@ Simple description of return values.
|
||||
|
||||
from inspect import getdoc
|
||||
from types import NoneType
|
||||
from plugable import ReadOnly, lock
|
||||
from capabilities import client_has_capability
|
||||
from text import _
|
||||
|
||||
from ipalib.plugable import ReadOnly, lock
|
||||
from ipalib.capabilities import client_has_capability
|
||||
from ipalib.text import _
|
||||
|
||||
|
||||
class Output(ReadOnly):
|
||||
|
||||
Reference in New Issue
Block a user