12 lines
365 B
Python
12 lines
365 B
Python
with open("/app/app/api/v1/endpoints/users.py", "r") as f:
|
|
lines = f.readlines()
|
|
|
|
# Mostrar contexto alrededor de lineas con tenant_id
|
|
targets = [51, 92, 159, 200, 307, 384]
|
|
for t in targets:
|
|
print(f"\n=== Linea {t} ===")
|
|
start = max(0, t-5)
|
|
end = min(len(lines), t+5)
|
|
for i in range(start, end):
|
|
print(f"{i+1}: {lines[i].rstrip()}")
|