-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not show a load completion message if all steps failed (#1055)
* Replace unneeded comprehension with generator `any` allows us to pass in a generator rather than a collection. Doing so removes a pair of brackets, making the intent slightly clearer. It will also have lazy evaluation advantages as the whole list is not generated. * Use f'' strings * Merge isinstance calls for better readability * Added `skip_report_completion` function to determine whether to skip slack notications * Fixed test failures by fixing datatypes * Reorder tests for clarity * Add check for condition where all record counts by media type are None * Lint --------- Co-authored-by: Madison Swain-Bowden <bowdenm@spu.edu>
- Loading branch information
1 parent
d92e6b6
commit bbb8d97
Showing
3 changed files
with
81 additions
and
16 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 |
---|---|---|
|
@@ -126,6 +126,7 @@ dmypy.json | |
|
||
# Editors and IDE's | ||
.vscode/ | ||
.history/ | ||
.idea/ | ||
*.sublime-workspace | ||
|
||
|
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