소스 검색

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