Feat: relative import to absolute

This commit is contained in:
Bertrand Benjamin 2021-04-18 22:44:41 +02:00
parent 10b9954c05
commit 6889ddd97c
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
# encoding: utf-8 # encoding: utf-8
import dash_html_components as html import dash_html_components as html
from ....database.filesystem.loader import CSVLoader from recopytex.database.filesystem.loader import CSVLoader
from .models import get_tribes, get_exams, get_students from .models import get_tribes, get_exams, get_students
loader = CSVLoader("./test_config.yml") loader = CSVLoader("./test_config.yml")

View File

@ -2,5 +2,5 @@
# encoding: utf-8 # encoding: utf-8
from dash.dependencies import Input, Output from dash.dependencies import Input, Output
from ...app import app from recopytex.dashboard.app import app

View File

@ -2,7 +2,7 @@
# encoding: utf-8 # encoding: utf-8
import click import click
from ..dashboard.app import app as dash from recopytex.dashboard.app import app as dash
@click.group() @click.group()