Sistema limpio
This commit is contained in:
6
check_lines.py
Normal file
6
check_lines.py
Normal file
@@ -0,0 +1,6 @@
|
||||
with open("/app/app/api/v1/endpoints/users.py", "r") as f:
|
||||
lines = f.readlines()
|
||||
|
||||
for i, line in enumerate(lines):
|
||||
if "tenant_id == current_user.tenant_id" in line:
|
||||
print(f"Linea {i+1}: {line.rstrip()}")
|
||||
Reference in New Issue
Block a user