fixed returning none as a result returning reverse function

Reverse does everything inplace and does not return a reversed list
hence resulting in a broken script.
This commit is contained in:
雲華
2021-08-17 20:24:53 -04:00
parent af948965b0
commit f277839679
2 changed files with 5 additions and 2 deletions

View File

@@ -10,4 +10,5 @@ RUN python3 -m venv venv && \
RUN mkdir database && \
touch database/news.db
CMD ["venv/bin/python", "main.py"]