forked from PnX-SI/UsersHub-authentification-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.py
More file actions
24 lines (17 loc) · 612 Bytes
/
models.py
File metadata and controls
24 lines (17 loc) · 612 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding: utf8
"""
This module was designed to be a submodule for
https://github.com/PnX-SI/TaxHub/.
In order to make it reusable, we turned it into a package, but TaxHub
still expects this file to exist and relies on it side effects. So we
make a fake module mimicing the previous one's behavior to maintain
compat.
"""
from __future__ import (unicode_literals, print_function,
absolute_import, division)
import os
import sys
CURDIR = os.path.dirname(os.path.abspath(__file__))
SRCDIR = os.path.join(CURDIR, 'src')
sys.path.append(SRCDIR)
from pypnuserhub.models import * # noqa