mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-16 10:27:21 +08:00
Fix: resolve merge conflicts
This commit is contained in:
1443
module/map/fleet.py
1443
module/map/fleet.py
File diff suppressed because it is too large
Load Diff
1133
module/map/map.py
1133
module/map/map.py
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -84,6 +84,17 @@ class SelectedGrids:
|
||||
|
||||
return SelectedGrids(result)
|
||||
|
||||
def set(self, **kwargs):
|
||||
"""
|
||||
Set attribute to each grid.
|
||||
|
||||
Args:
|
||||
**kwargs:
|
||||
"""
|
||||
for grid in self:
|
||||
for key, value in kwargs.items():
|
||||
grid.__setattr__(key, value)
|
||||
|
||||
def add(self, grids):
|
||||
"""
|
||||
Args:
|
||||
|
||||
Reference in New Issue
Block a user