Skip to content

Commit f85f231

Browse files
committed
style: fix lint issues
1 parent 815a596 commit f85f231

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/core/stream_manager.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,9 @@ async def start_ffmpeg(
291291
msg_manager = MessagePusher(self.settings)
292292
user_config = self.settings.user_config
293293

294-
if self.app.recording_enabled and MessagePusher.should_push_message(
295-
self.settings, self.recording, check_manually_stopped=True, message_type='end') and not self.recording.notified_live_end:
294+
if (self.app.recording_enabled and MessagePusher.should_push_message(
295+
self.settings, self.recording, check_manually_stopped=True, message_type='end') and
296+
not self.recording.notified_live_end):
296297
push_content = self._["push_content_end"]
297298
end_push_message_text = user_config.get("custom_stream_end_content")
298299
if end_push_message_text:

0 commit comments

Comments
 (0)