-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #741 from Mathics3/apply-reduction-5
apply->eval, long lines, some annotations...
- Loading branch information
Showing
11 changed files
with
224 additions
and
137 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 |
---|---|---|
|
@@ -18,15 +18,15 @@ jobs: | |
run: pip install 'click==8.0.4' 'black==22.3.0' 'isort==5.10.1' | ||
- name: Run isort --check . | ||
run: isort --check . | ||
- name: Run isort --check . | ||
- name: Run black --check . | ||
run: black --check . | ||
- name: If needed, commit black changes to the pull request | ||
if: failure() | ||
run: | | ||
black . | ||
git config --global user.name 'autoblack' | ||
git config --global user.email '[email protected]' | ||
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | ||
git checkout $GITHUB_HEAD_REF | ||
git commit -am "fixup: Format Python code with Black" | ||
git push | ||
# - name: If needed, commit black changes to the pull request | ||
# if: failure() | ||
# run: | | ||
# black . | ||
# git config --global user.name 'autoblack' | ||
# git config --global user.email '[email protected]' | ||
# git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | ||
# git checkout $GITHUB_HEAD_REF | ||
# git commit -am "fixup: Format Python code with Black" | ||
# git push |
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
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
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
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,5 +1,5 @@ | ||
""" | ||
Numercial Data | ||
Numerical Data | ||
""" | ||
|
||
from mathics.builtin.base import Builtin | ||
|
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.