From 10c4f6f514044cbd97608e69319d81c47381e6cd Mon Sep 17 00:00:00 2001 From: Lili Date: Thu, 12 Jan 2023 14:40:05 +0100 Subject: [PATCH] split long line --- tlapbot/owncast_helpers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tlapbot/owncast_helpers.py b/tlapbot/owncast_helpers.py index 3430f15..0ac83bc 100644 --- a/tlapbot/owncast_helpers.py +++ b/tlapbot/owncast_helpers.py @@ -242,4 +242,5 @@ def is_redeem_active(redeem, active_categories): def remove_inactive_redeems(redeems, active_categories): - return dict(filter(lambda redeem: is_redeem_active(redeem, active_categories), redeems.items())) \ No newline at end of file + return dict(filter(lambda redeem: is_redeem_active(redeem, active_categories), + redeems.items())) \ No newline at end of file