Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler committed Aug 17, 2024
1 parent 7042377 commit 804a2f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brownie/project/compiler/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def expand_source_map(source_map_str: str) -> List:
if not isinstance(source_map_str, str):
# NOTE: why do we need this?
source_map_str = source_map_str["pc_pos_map_compressed"]
raise TypeError(source_map_str) from None
#raise TypeError(source_map_str) from None

source_map: List = [_expand_row(i) if i else None for i in source_map_str.split(";")]
for i, value in enumerate(source_map[1:], 1):
Expand Down

0 comments on commit 804a2f3

Please sign in to comment.