Skip to content

Commit

Permalink
Removed code snippet in the error message for config file parsing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sushimon committed Jul 8, 2023
1 parent 5356064 commit 2cff098
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python_ta/reporters/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ def to_dict(self) -> Dict:


# Messages without a source code line to highlight
NO_SNIPPET = {"invalid-name"}
NO_SNIPPET = {
"invalid-name",
"unknown-option-value",
}


class PythonTaReporter(BaseReporter):
Expand Down

0 comments on commit 2cff098

Please sign in to comment.