(self, objs=None)
| 6 | |
| 7 | class Room: |
| 8 | def __init__(self, objs=None): |
| 9 | self.objects = objs |
| 10 | if objs is None: |
| 11 | self.objects = set(["banana", "chair", "piano"]) |
| 12 | def describe(self): |
| 13 | print("the room is dark and small, it contains", self.objects); |
| 14 | def neighbor(self, direction): |
nothing calls this directly
no outgoing calls
no test coverage detected