Skip to content

Commit

Permalink
refactor: rename l to line
Browse files Browse the repository at this point in the history
  • Loading branch information
gythaogg committed Feb 10, 2025
1 parent 9af7e26 commit 5c27de5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apis_ontology/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ def linkify_excerpt_id(xml_id):
value = record.tei_refs
lines = value.split("\n")
linked_lines = []
for l in lines:
words = l.split()
for line in lines:
words = line.split()
linked_words = []
for w in words:
if (
Expand Down

0 comments on commit 5c27de5

Please sign in to comment.