Skip to content

Commit

Permalink
fix validate
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 committed Jan 19, 2024
1 parent 9e4a8c4 commit 436df52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/utility/validate_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def readSLIP44():
for line in urllib.request.urlopen(slip44URL):
line = line.decode('utf-8')
if(len(line) > 6):
if(line[0] != "-" and line[0] != "C" and (line[5] == "|" or line[6] == "|" or line[7] == "|" or line[8] == "|" or line[9] == "|" or line[10] == "|" or line[11] == "|")):
if(line[0] != "-" and line[0] != "C" and (line[5] == "|" or line[6] == "|" or line[7] == "|" or line[8] == "|" or line[9] == "|" or line[10] == "|" or line[11] == "|" or line[12] == "|" or line[13] == "|")):
lines.append(line)
if lines:
for line in lines:
Expand Down

0 comments on commit 436df52

Please sign in to comment.