Skip to content

Commit

Permalink
deps: update typing-extensions (#403)
Browse files Browse the repository at this point in the history
* update typing-extensions

* update dependencies

* upgrade black

* run black

* ignore private method docstrings

* fix Any typing issues

* add .python-version to gitignore

* remove .python-version
  • Loading branch information
mvadari committed Jun 16, 2022
1 parent 6bba13c commit c7c8131
Show file tree
Hide file tree
Showing 12 changed files with 391 additions and 395 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Lint
run: |
poetry run flake8 xrpl tests
poetry run flake8 xrpl tests --darglint-ignore-regex="^_(.*)"
- name: Type-check
run: |
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ target/
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repos:
types: [python]
- id: flake8
name: flake8
entry: poetry run flake8
entry: poetry run flake8 --darglint-ignore-regex="^_(.*)"
language: system
types: [python]
- id: mypy
Expand Down
1 change: 0 additions & 1 deletion .python-version

This file was deleted.

5 changes: 3 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"restructuredtext.confPath": "${workspaceFolder}/docs",
"esbonio.sphinx.confDir": "${workspaceFolder}/docs"
"esbonio.sphinx.confDir": "${workspaceFolder}/docs",
"python.linting.mypyEnabled": true,
"mypy.runUsingActiveInterpreter": true,
}

0 comments on commit c7c8131

Please sign in to comment.