Skip to content

Commit

Permalink
Fix commented-out coalesce keyword (#7876)
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh committed Oct 9, 2023
1 parent 97e9440 commit 74b00c9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub(super) fn is_allowed_func_call(name: &str) -> bool {
| "assertNotEquals"
| "bool"
| "bytes"
// | "coalesce"
| "coalesce"
| "count"
| "failIfEqual"
| "failUnlessEqual"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,4 @@ FBT.py:69:38: FBT003 Boolean positional value in function call
71 | bar.is_not(False)
|

FBT.py:73:31: FBT003 Boolean positional value in function call
|
71 | bar.is_not(False)
72 | next(iter([]), False)
73 | sa.func.coalesce(tbl.c.valid, False)
| ^^^^^ FBT003
|


0 comments on commit 74b00c9

Please sign in to comment.