-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: make arr a subclass of list (#211)
BREAKING: Renames `.count()` to `.len()` to avoid conflicts with Python `list` while maintaining backwards compatability.
- Loading branch information
1 parent
9b143f5
commit 5e1cffd
Showing
7 changed files
with
54 additions
and
30 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 |
---|---|---|
|
@@ -11,7 +11,6 @@ select = [ | |
"COM", | ||
"D417", | ||
"E", | ||
"ERA", | ||
"F", | ||
"I", | ||
"ICN", | ||
|
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,11 @@ | ||
[integator] | ||
fail_fast = false | ||
push_on_success = true | ||
source_dir = "/Users/mabe/Git/iterpy" | ||
skip_if_no_diff_against_trunk = false | ||
trunk = "main" | ||
|
||
[[integator.commands]] | ||
name = "Test" | ||
cmd = "make docker_ci" | ||
max_staleness_seconds = 1 |
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
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,8 +1,12 @@ | ||
{ | ||
"exclude": [ | ||
".*venv*" | ||
"**/node_modules", | ||
"**/__pycache__", | ||
"**/.*", | ||
"build" | ||
], | ||
"pythonPlatform": "Darwin", | ||
"reportMissingTypeStubs": false, | ||
"typeCheckingMode": "strict" | ||
"typeCheckingMode": "off", | ||
"strict": [ | ||
"**/*.py" | ||
] | ||
} |