We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e32ffc commit 7287c26Copy full SHA for 7287c26
.pdk/pdk/gleaner.py
@@ -72,7 +72,7 @@ def patch_message(old, new, *, verbose=False):
72
count -= 1
73
for old_block, new_block in blocks.items():
74
# flowdas: 변경 후에도 P_INVARIANT 패턴을 유지하지 못한다면 안전하지 않다.
75
- if P_INVARIANT.match(new_block):
+ if P_INVARIANT.fullmatch(new_block):
76
print(f"{old_block} --> {new_block}")
77
new.string = new.string.replace(old_block, new_block)
78
changed = True
0 commit comments