1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 03:58:22 +08:00

Fix: De-redundancy of daily commissions

- Fix typo of intersect_by_eq
This commit is contained in:
LmeSzinc
2021-11-18 12:04:16 +08:00
parent c150422e27
commit 52f11b34c9
3 changed files with 22 additions and 13 deletions

View File

@@ -157,7 +157,7 @@ class SelectedGrids:
"""
return SelectedGrids(list(set(self.grids).intersection(set(grids.grids))))
def intersect_by_ed(self, grids):
def intersect_by_eq(self, grids):
"""
Another `intersect()` method, but de-duplicates with `__eq__` instead of `__hash__`.