Skip to content

Commit

Permalink
Minor Cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
ReinderVosDeWael committed Jan 5, 2024
1 parent 759db54 commit 6493b52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ To batch preprocess GGIR data for the app, use the `actigraphy_preprocess` entry

The Actigraphy app is designed to annotate sleep data. While traditional Dash apps might not scale to complex applications, this repository employs a custom Dash architecture to address this:

- `app.py` contains the main Dash app, which is responsible for the layout of the app and the navigation between pages.
- `app.py` contains the main Dash app, which is responsible for the layout of the app.
- `components/` directory houses the components utilized by the app. Each component is tasked with its specific layout and logic. Some of the components include file selection, day slider, and graph visualization.
- `core/` contains the core tools of the app, including configurations, utilities, command line interface and the callback manager.
- `core/callback_manager.py` is responsible for registering callbacks for the app. It is also responsible for registering callbacks for the components. This file allows the callbacks to be placed across multiple files by defining a global manager.
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test___main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Unit tests for the __main__ module."""
from pytest_mock import plugin

from actigraphy import __main__ # assuming this is the module name
from actigraphy import __main__


def test___main__(mocker: plugin.MockerFixture) -> None:
Expand Down

0 comments on commit 6493b52

Please sign in to comment.