mirror of
https://github.com/illiumst/marl-factory-grid.git
synced 2025-09-17 16:12:00 +02:00
Resolved some warnings and style issues
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import random
|
||||
from typing import List, Tuple
|
||||
|
||||
from marl_factory_grid.environment.entity.object import _Object
|
||||
from marl_factory_grid.environment.entity.object import Object
|
||||
|
||||
|
||||
class Zone(_Object):
|
||||
class Zone(Object):
|
||||
|
||||
@property
|
||||
def positions(self):
|
||||
|
@@ -1,8 +1,8 @@
|
||||
from marl_factory_grid.environment.groups.objects import _Objects
|
||||
from marl_factory_grid.environment.groups.objects import Objects
|
||||
from marl_factory_grid.modules.zones import Zone
|
||||
|
||||
|
||||
class Zones(_Objects):
|
||||
class Zones(Objects):
|
||||
symbol = None
|
||||
_entity = Zone
|
||||
|
||||
|
Reference in New Issue
Block a user