Skip to content

Commit

Permalink
Remove dummy code (#85)
Browse files Browse the repository at this point in the history
* update CHANGELOG

Signed-off-by: Marcel Müller <[email protected]>

* remove dummy code snippets from early development

Signed-off-by: Marcel Müller <[email protected]>

---------

Signed-off-by: Marcel Müller <[email protected]>
  • Loading branch information
marcelmbn authored Nov 25, 2024
1 parent 7edb11b commit 88bd8a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
9 changes: 2 additions & 7 deletions src/mindlessgen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
"""
Squarer
=======
Dummy command line tool to square a number.
Mindless molecule generator initialization module.
"""

from .__version__ import __version__
from .cli import console_entry_point
from .generator import generator as square

__all__ = ["__version__", "console_entry_point", "square"]
__all__ = ["console_entry_point"]
1 change: 0 additions & 1 deletion src/mindlessgen/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
from .cli import console_entry_point

if __name__ == "__main__":
# print("Hello from __main__.py")
raise SystemExit(console_entry_point())
5 changes: 1 addition & 4 deletions src/mindlessgen/generator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
"""
Math
====
This module contains all mathematical functions.
This module is the entry point for the main generator module.
"""

from .main import generator
Expand Down

0 comments on commit 88bd8a1

Please sign in to comment.