diff --git a/commune/__init__.py b/commune/__init__.py index 5f3ebad1..d99966c7 100755 --- a/commune/__init__.py +++ b/commune/__init__.py @@ -2,12 +2,4 @@ from .module import Module -from functools import partial -# set the module functions as globals - -# for f in : -# globals()[f] = getattr(Module, f) - - -c = Block = Lego = M = Module # alias c.Module as c.Block, c.Lego, c.M -c.add_to_globals(globals()) \ No newline at end of file +Module.add_to_globals(globals()) \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index d5def087..e30c8fda 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,15 +7,6 @@ paramiko # crypto substrate-interface -# async stuff -nest_asyncio -asyncio -aiofiles -aiohttp - -# testing -pytest - #ml/ai/llms/buzzwords openai torch @@ -28,6 +19,7 @@ netaddr typer loguru pyyaml + #plot plotly streamlit @@ -36,5 +28,11 @@ streamlit # for uploading to pypi twine +# async stuff +nest_asyncio +asyncio +aiofiles +aiohttp - +# testing +pytest