-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
latentvector
committed
Nov 16, 2024
1 parent
07c4166
commit 1549e0c
Showing
17 changed files
with
478 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
|
||
|
||
|
||
from .module import Module | ||
from .vali import Vali | ||
from .server import Server | ||
from .client import Client | ||
from .key import Key | ||
from .module import Module # the module module | ||
from .vali import Vali # the vali module | ||
from .server import Server # the server module | ||
from .client import Client # the client module | ||
from .key import Key # the key module | ||
# set the module functions as globalsw | ||
IDONTGIVEAFUCKWHATYOUCALLTHIS = c = Block = Lego = M = Agent = Module # alias c.Module as c.Block, c.Lego, c.M | ||
M = IDONTGIVEAFUCKWHATYOUCALLTHIS = c = Block = Lego = M = Agent = Module # alias c.Module as c.Block, c.Lego, c.M | ||
c.add_to_globals(globals()) | ||
key = c.get_key # override key function with file key in commune/key.py | ||
key = c.get_key # override key function with file key in commune/key.py TODO: remove this line with a better solution | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.