[+] Add news channels from memeburn

This commit is contained in:
Hykilpikonna
2021-11-24 15:22:54 -05:00
parent f9370aedb5
commit 275efda0fe
3 changed files with 21 additions and 4 deletions
+2 -2
View File
@@ -73,7 +73,7 @@ def write(file: str, text: str) -> None:
"""
Write text to a file
:param file: File path
:param file: File path (will be converted to lowercase)
:param text: Text
:return: None
"""
@@ -91,7 +91,7 @@ def read(file: str) -> str:
"""
Read file content
:param file: File path
:param file: File path (will be converted to lowercase)
:return: None
"""
with open(file.lower(), 'r', encoding='utf-8') as f: