Skip to content

Commit 9bc142b

Browse files
authored
Merge pull request #106 from totaldebug/105-support_for_type_hints
feat: added type hints
2 parents a90e267 + 4f99e88 commit 9bc142b

19 files changed

+1457
-1306
lines changed

Diff for: .github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Setup Python
4040
uses: actions/setup-python@v1
4141
with:
42-
python-version: 3.8
42+
python-version: 3.9
4343
- name: Run image
4444
uses: abatilo/[email protected]
4545
- name: Install dependencies with Poetry

Diff for: .github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Python
1717
uses: actions/setup-python@v1
1818
with:
19-
python-version: 3.8
19+
python-version: 3.9
2020
- name: Run image
2121
uses: abatilo/[email protected]
2222
- name: Install dependencies with Poetry
@@ -53,7 +53,7 @@ jobs:
5353
- name: Set up Python
5454
uses: actions/setup-python@v1
5555
with:
56-
python-version: 3.8
56+
python-version: 3.9
5757
- name: Install Poetry
5858
uses: snok/[email protected]
5959
- name: Cache Poetry virtualenv

Diff for: mypy.ini

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[mypy]
2+
disable_error_code = misc

0 commit comments

Comments
 (0)