Skip to content

Commit

Permalink
eve-parity: skip transform keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonish committed Feb 21, 2025
1 parent 409a33d commit b2b35ed
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/eve-parity.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,10 @@ def load_known_keywords():
for line in lines[1:]:
parts = line.split(";")
if parts:
# Skip transforms.
if len(parts) > 3 and parts[3].find("transform") > -1:
continue

keywords.add(parts[0])
return keywords

Expand Down

0 comments on commit b2b35ed

Please sign in to comment.