Remove strip()

Signed-off-by: Lev Rusanov <30170278+JDM170@users.noreply.github.com>
This commit is contained in:
2024-10-27 01:18:24 +07:00
parent 9ea98cd234
commit 28b2e34659

View File

@@ -53,7 +53,7 @@ def main():
print("file not found")
sysexit()
with open(args.file, encoding="utf-8") as f:
temp = list(filter(None, f.read().strip().split("\n")))
temp = list(filter(None, f.read().split("\n")))
list_from_file = temp.copy()
new_file = temp.copy()
video_len = len(list_from_file)