瀏覽代碼

Remove "soup" from representation of MainPage

jherve 1 年之前
父節點
當前提交
84b6e1b76b
共有 1 個文件被更改,包括 2 次插入2 次删除
  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