Skip to content

Commit

Permalink
Merge pull request #6 from small-thinking/add-basic
Browse files Browse the repository at this point in the history
Add basic
  • Loading branch information
yxjiang authored Mar 1, 2024
2 parents 1da376d + 6748a5b commit 11dd767
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions polymind/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .basic import *
3 changes: 0 additions & 3 deletions polymind/add.py

This file was deleted.

6 changes: 6 additions & 0 deletions polymind/basic.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

def add(x: int, y: int) -> int:
return x + y

def subtract(x: int, y: int) -> int:
return x - y
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="polymind",
version="0.0.5",
version="0.0.6",
packages=find_packages(),
install_requires=requirements,
author="Small Thinking",
Expand Down

0 comments on commit 11dd767

Please sign in to comment.