Update DataClass.py, GetArc_Hitomi.py, and 2 more files...
작업한거 일단 커밋. 딱히 기능을 추가한건 없지만, 정리는 조금 했다. 정리 더 해야 하는데, 윈도우에서 작업하려고....커밋!!
This commit is contained in:
@@ -14,7 +14,10 @@ class CBZInfo:
|
||||
self.tags = set()
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.title} by {self.author} ({self.publication_year})"
|
||||
strArtists = ", ".join(self.artists)
|
||||
strTags = ", ".join(self.tags)
|
||||
|
||||
return f"ID : {self.gallery_id} - {self.title} by {strArtists} - #{strTags}"
|
||||
|
||||
def AddTag(self, name):
|
||||
self.tags.add(name)
|
||||
|
||||
Reference in New Issue
Block a user