Skip to content

Commit

Permalink
fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
affemitkaraffe committed Sep 20, 2023
1 parent e63caee commit e725ab6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/cross_ling_appl.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def create_rows(dump_files, locale):
for element in (file.rulegroups + file.rules):
for comment in element.comments:
rows.append([
datetime.strptime(comment.date, '%Y-%m-%d').date(), locale, file.rel_path, element.id, element.sub_id,
datetime.strptime(comment.date, '%Y-%m-%d').date(),
locale, file.rel_path, element.id, element.sub_id,
','.join([tt.tag for tt in element.tone_tags]),
comment.tag, comment.content
])
Expand Down

0 comments on commit e725ab6

Please sign in to comment.