mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
b5bdd07bc5
Add absolute_import from __future__ so that pylint does not fail and to achieve python3 behavior in python2. Reviewed-By: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
20 lines
457 B
Python
20 lines
457 B
Python
#
|
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
'''
|
|
This Red Hat OS family base platform module exports default platform
|
|
related constants for the Red Hat OS family-based systems.
|
|
'''
|
|
|
|
# Fallback to default path definitions
|
|
from __future__ import absolute_import
|
|
|
|
from ipaplatform.base.constants import BaseConstantsNamespace
|
|
|
|
|
|
class RedHatConstantsNamespace(BaseConstantsNamespace):
|
|
pass
|
|
|
|
constants = RedHatConstantsNamespace()
|