Skip to content

Commit

Permalink
Remove useless check
Browse files Browse the repository at this point in the history
Random consistency checks do not belong in the codebase.

Suggested-by: Marek Marczykowski-Górecki <[email protected]>
  • Loading branch information
DemiMarie committed Jan 31, 2023
1 parent ed68c01 commit 13389b5
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions gentbl.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,6 @@ def print_interval(interval, last_cat):
else:
print(f' case 0x{interval[0]:X}: // category {last_cat}')
import sys
try:
assert False
except AssertionError:
pass
else:
sys.exit(1)
interval = [0, 0]
from unicodedata import category, name
cat = last_cat = 'Cc'
Expand Down

0 comments on commit 13389b5

Please sign in to comment.