Explorar el Código

Remove "soup" from representation of MainPage

jherve hace 1 año
padre
commit
84b6e1b76b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/de_quoi_parle_le_monde/article.py

+ 2 - 2
src/de_quoi_parle_le_monde/article.py

@@ -1,6 +1,6 @@
 import asyncio
 from abc import ABC, abstractmethod
-from attrs import frozen
+from attrs import frozen, field
 import cattrs
 from bs4 import BeautifulSoup
 from yarl import URL
@@ -52,7 +52,7 @@ class MainArticle(ABC):
 @frozen
 class MainPage(ABC):
     snapshot: InternetArchiveSnapshot
-    soup: BeautifulSoup
+    soup: BeautifulSoup = field(repr=False)
     top_articles: list[TopArticle]
     main_article: MainArticle