Skip to content

Commit

Permalink
fix type error in formula.py
Browse files Browse the repository at this point in the history
  • Loading branch information
alexflint committed Nov 2, 2024
1 parent 9b06f15 commit b0999e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ jobs:
python-version: ['3.9', '3.10']

steps:
- uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 2 additions & 0 deletions logicalinduction/formula.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ def __mul__(self, Number) -> 'Number':
...
def __add__(self, Number) -> 'Number':
...
def __radd__(self, Number) -> 'Number':
...
def __lt__(self, Number) -> bool:
...
def __gt__(self, Number) -> bool:
Expand Down

0 comments on commit b0999e5

Please sign in to comment.