Skip to content

Commit

Permalink
Yet more type fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pcorpet committed Jan 30, 2021
1 parent cab9598 commit 5b919cc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ install:
script:
- python test_airtable.py
- "[[ $TRAVIS_PYTHON_VERSION == 2.7 ]] || PYTHONPATH=. stubtest airtable"
- "[[ $TRAVIS_PYTHON_VERSION == 2.7 ]] || PYTHONPATH=. mypy typetests"
- "[[ $TRAVIS_PYTHON_VERSION == 2.7 ]] || PYTHONPATH=. mypy typetests --strict"
notifications:
email:
- [email protected]
Expand Down
8 changes: 0 additions & 8 deletions airtable/__init__.pyi

This file was deleted.

2 changes: 1 addition & 1 deletion airtable/airtable.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class Record(Generic[_RecordType]):
...


_DefaultRecordType = Record[_RecordType]
_DefaultRecordType = Record[Mapping[str, Any]]


class _DeletedRecord(TypedDict):
Expand Down

0 comments on commit 5b919cc

Please sign in to comment.