Skip to content

Commit

Permalink
Remove trait name as a requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
rafelafrance committed Apr 17, 2024
1 parent cacc929 commit 9dd3aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flora/pylib/writers/base_html_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def format_text(self, row: Label, exclude=None):
prev = 0

for trait in row.traits:
if trait.trait in exclude:
if trait._trait in exclude:
continue

start = trait.start
Expand Down

0 comments on commit 9dd3aef

Please sign in to comment.