Skip to content

Commit

Permalink
Tweak checkerr
Browse files Browse the repository at this point in the history
  • Loading branch information
peachpit-site committed Jan 31, 2025
1 parent b14545b commit 4a8eb53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/checkerr.pf
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def

makeResult(errorFile, allTheOtherCode string) :
"Codes used but not defined are:\n" + prettySet(usedSet - definedSet - FALSE_POSITIVES) + ..
.. "\n\nCodes used more than once are\n" + prettySet(duplicates - FALSE_POSITIVES) + ..
.. "\n\nCodes defined but not used are\n" + prettySet(definedSet - usedSet - FALSE_POSITIVES)
.. "\n\nCodes used more than once are:\n" + prettySet(duplicates - FALSE_POSITIVES) + ..
.. "\n\nCodes defined but not used are:\n" + prettySet(definedSet - usedSet - FALSE_POSITIVES)
given :
definedList = regexp.findAllString(`"[a-z]+\/[a-z\/]+"`, errorFile, -1)
definedSet = set(definedList ...)
Expand Down

0 comments on commit 4a8eb53

Please sign in to comment.