**Overview:**
- 💻 一些技术性更改。
**Technology Changes:**
- 🗃️ 将几处不必要的`Optional[int]`更改为`int`,以解决 IDE 报 Warning.
> [!NOTE]
> 以下是其中一处更改前后的代码对比:
>
> (更改前,data.py)
>
> INTERNATIONAL_LABOURS_DAY_END_DELTA_DAY: ClassVar[Tuple[
> Optional[int], Optional[int], Optional[int], Optional[int],
> Optional[int], Optional[int], Optional[int]
> ]] = (2, 1, 4, 4, 4, 4, 3)
>
>
> (更改后,data.py)
>
> INTERNATIONAL_LABOURS_DAY_END_DELTA_DAY: ClassVar[Tuple[
> int, int, int, int,
> int, int, int
> ]] = (2, 1, 4, 4, 4, 4, 3)
>