Skip to content

Commit

Permalink
remove a bad nocover pragma
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Mar 4, 2024
1 parent d610f90 commit d71f51f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/codegen/function_definitions/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def ir_identifier(self) -> str:

def set_frame_info(self, frame_info: FrameInfo) -> None:
# XXX: when can this happen?
if self.frame_info is not None: # pragma: nocover
if self.frame_info is not None:
assert frame_info == self.frame_info
else:
self.frame_info = frame_info
Expand Down

0 comments on commit d71f51f

Please sign in to comment.