Skip to content

Commit 83e0a2a

Browse files
authored
Merge pull request #251 from y9c/master
Fix error of transcript name
2 parents fca40df + f4df354 commit 83e0a2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

varcode/effects/effect_ordering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def name_of_associated_transcript(effect):
172172
"""
173173
return apply_to_transcript_if_exists(
174174
effect=effect,
175-
fn=lambda t: t.name,
175+
fn=lambda t: None if t.name is None else "",
176176
default="")
177177

178178

0 commit comments

Comments
 (0)