Skip to content

Commit ef6142e

Browse files
committed
style: apply pre-commit black and isort to the episode-thumbnail change
The per-project black configs use a wider line length than the repo pre-commit hook, so the two files touched outside backends/advanced needed its formatting.
1 parent 4b37058 commit ef6142e

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

backends/advanced/src/advanced_omi_backend/app_factory.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,7 @@
9393
from advanced_omi_backend.services.timeline.discovery import (
9494
process_current_timeline_days,
9595
)
96-
from advanced_omi_backend.services.timeline.thumbnails import (
97-
process_episode_thumbnails,
98-
)
96+
from advanced_omi_backend.services.timeline.thumbnails import process_episode_thumbnails
9997
from advanced_omi_backend.task_manager import get_task_manager, init_task_manager
10098
from advanced_omi_backend.users import (
10199
User,

extras/screenpipe-collector/chronicle_screenpipe/collector.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -466,9 +466,7 @@ def _frames_across_interval(self, start: str, end: str, count: int) -> list[int]
466466
)
467467
frame_ids: list[int] = []
468468
for index in range(count):
469-
slice_start = datetime.fromtimestamp(
470-
begin + index * width, tz=timezone.utc
471-
)
469+
slice_start = datetime.fromtimestamp(begin + index * width, tz=timezone.utc)
472470
slice_end = datetime.fromtimestamp(
473471
begin + (index + 1) * width, tz=timezone.utc
474472
)

0 commit comments

Comments
 (0)