Rebekah-Chuang / VizAble

VizAble is a web-based data visualization tool that generates accessible visualizations for all users, including people with visual impairments (low vision or blind).
MIT License
3 stars 0 forks source link

fix: specify `apps` as parent package when importing `functions` #74

Closed Rebekah-Chuang closed 8 months ago

Rebekah-Chuang commented 8 months ago

This pull request corrects the import statement for the functions module in the apps package. Previously, the statement was

from . import functions

but it has been updated to

from apps import functions

This change ensures the correct module is imported, preventing potential import errors. Additionally, the ability to successfully generate documentation using sphinx has also been verified.

closes #73