-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Renamed statement as expression * Renamed expression as operand * Renamed resolve as express * expression -> operand * follow up * Fixed tests * Added mypy.ini and updated gitignore * Replaced old dict typehints by Expression * Follow up * Replaced dict typehint by Expression in operators * Follow up for search operators * FIXME : Fix lookup, join, right join and associated tests following collection removal in pipeline * Removed right joins * Removed old expressions module * Fixed test
- Loading branch information
Showing
101 changed files
with
644 additions
and
1,203 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
venv | ||
.venv | ||
.coverage | ||
.env | ||
notes.md | ||
**/*~ | ||
|
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[mypy] | ||
show_column_numbers = True | ||
implicit_optional = False | ||
disallow_untyped_defs = True | ||
disallow_untyped_calls = True | ||
follow_imports = silent | ||
ignore_missing_imports = True | ||
plugins = pydantic.mypy | ||
explicit_package_bases = True |
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 was deleted.
Oops, something went wrong.
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.