From 6c63e0763b405f16c928906084ebb368e3853c09 Mon Sep 17 00:00:00 2001 From: seria Date: Wed, 30 Oct 2024 08:48:04 +0900 Subject: [PATCH] Sort dunder all --- genshin/models/honkai/chronicle/notes.py | 2 +- genshin/models/zzz/chronicle/month_info.py | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/genshin/models/honkai/chronicle/notes.py b/genshin/models/honkai/chronicle/notes.py index 70d3d9e6..5dd030a5 100644 --- a/genshin/models/honkai/chronicle/notes.py +++ b/genshin/models/honkai/chronicle/notes.py @@ -2,7 +2,7 @@ from genshin.models.model import DateTimeField -__all__ = ("HonkaiNotes", "GreedyEndless", "UltraEndless", "BattleField", "GodWar") +__all__ = ("BattleField", "GodWar", "GreedyEndless", "HonkaiNotes", "UltraEndless") class HonkaiNotesEvent(pydantic.BaseModel): diff --git a/genshin/models/zzz/chronicle/month_info.py b/genshin/models/zzz/chronicle/month_info.py index 550e10cc..c9719f13 100644 --- a/genshin/models/zzz/chronicle/month_info.py +++ b/genshin/models/zzz/chronicle/month_info.py @@ -4,15 +4,15 @@ from genshin.models.model import Aliased, APIModel, DateTimeField __all__ = ( - "PolychromeIncomeType", + "IncomeData", "PolychromeIncome", + "PolychromeIncomeType", "ZZZCurrencyType", - "ZZZIncomeCurrency", - "IncomeData", - "ZZZDiaryPlayerInfo", "ZZZDiary", - "ZZZDiaryDetailItem", "ZZZDiaryDetail", + "ZZZDiaryDetailItem", + "ZZZDiaryPlayerInfo", + "ZZZIncomeCurrency", )