Skip to content

Commit 85bfe65

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5d5277b commit 85bfe65

34 files changed

Lines changed: 34 additions & 0 deletions

src/actigraphy/__main__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Entrypoints for the Actigraphy app."""
2+
23
import logging
34

45
from actigraphy import app

src/actigraphy/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Main app setup for the Actigraphy app."""
2+
23
import logging
34

45
import dash

src/actigraphy/components/app_license.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""License information for the application."""
2+
23
from dash import html
34

45

src/actigraphy/components/day_slider.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Dash HTML div for a slider component for selecting days."""
2+
23
import datetime
34
import itertools
45
import logging

src/actigraphy/components/file_selection.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
The file selection component contains an input box for the evaluator's name, and
44
dropdown menu for selecting a subject.
55
"""
6+
67
import logging
78

89
import dash

src/actigraphy/components/finished_checkbox.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
The checklist allows the user to indicate whether they are done with the
44
current participant and would like to proceed to the next one.
55
"""
6+
67
import logging
78

89
import dash

src/actigraphy/components/graph.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
app. The graph displays the sensor angle and arm movement data for a given day.
55
The range slider is used to select a sleep window for the given day.
66
"""
7+
78
import datetime
89
import json
910
import logging

src/actigraphy/components/switches.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
The third switch is used to indicate whether the user needs to review the sleep
88
data for a particular night.
99
"""
10+
1011
import logging
1112

1213
import dash

src/actigraphy/components/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Utility functions used across components."""
2+
23
import datetime
34
import functools
45
import logging

src/actigraphy/core/callback_manager.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
At the bottom of this file, the global_manager object is created. This object
88
is used to register callbacks across multiple files.
99
"""
10+
1011
import dataclasses
1112
import inspect
1213
import logging

0 commit comments

Comments
 (0)