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 3ad567b commit 7042377
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 @@ -11,7 +11,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["ps_pos_map_compressed"]
source_map_str = source_map_str["pc_pos_map_compressed"]
raise TypeError(source_map_str) from None

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

0 comments on commit 7042377

Please sign in to comment.