Skip to content

Commit

Permalink
Fix unclosed paren (#77)
Browse files Browse the repository at this point in the history
<!-- related issues, e.g. "will close #123" -->

## Description
<!-- describe in a few words the changes -->

There was apparently uncaught syntax error that got fixed in a recent
Nushell PR
  • Loading branch information
kubouch committed Mar 8, 2024
1 parent 83a0358 commit bcd2381
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions nupm/utils/misc.nu
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export def check-cols [
if not ($missing_cols | is-empty) {
throw-error ($"Missing the following required columns in ($what):"
+ $" ($missing_cols | str join ', ')")
)
}
}

Expand All @@ -30,7 +29,6 @@ export def check-cols [
if not ($extra_cols | is-empty) {
throw-error ($"Got the following extra columns in ($what):"
+ $" ($extra_cols | str join ', ')")
)
}
}

Expand Down

0 comments on commit bcd2381

Please sign in to comment.