Android: initial working version

This commit is contained in:
Berserker
2026-03-26 07:58:11 +01:00
parent fb45a2f87e
commit 07e6be7c93
15 changed files with 87 additions and 24 deletions
+2 -2
View File
@@ -1168,8 +1168,8 @@ class ConnectionsMeta(AssembleOptions):
attrs["entrances"] = frozenset((connection.lower() for connection in attrs["entrances"]))
assert "exits" in attrs, f"Please define valid exits for {name}"
attrs["exits"] = frozenset((connection.lower() for connection in attrs["exits"]))
if "__doc__" not in attrs:
attrs["__doc__"] = PlandoConnections.__doc__
if "__doc__" not in attrs:
attrs["__doc__"] = PlandoConnections.__doc__
cls = super().__new__(mcs, name, bases, attrs)
return cls