8 lines
177 B
Python
8 lines
177 B
Python
import re
|
|
|
|
with open('src/components/SandboxSimulation.tsx', 'r') as f:
|
|
content = f.read()
|
|
|
|
# Make sure interceptCount is completely gone
|
|
print("interceptCount" in content)
|