Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
MarquessV committed Jul 2, 2024
1 parent 3abc0a4 commit 2139ef8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyquil/api/_abstract_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ def copy(self) -> "EncryptedProgram":
return dataclasses.replace(self)

def __post_init__(self) -> None:
if any(f.name == 'recalculation_table' for f in fields(self)):
if any(f.name == "recalculation_table" for f in fields(self)):
warnings.warn(
"The recalculation_table field is no longer used. It will be removed in future versions.",
DeprecationWarning,
stacklevel=2
stacklevel=2,
)

@property
Expand Down

0 comments on commit 2139ef8

Please sign in to comment.