Skip to content

Commit

Permalink
[REF] remove strict
Browse files Browse the repository at this point in the history
  • Loading branch information
legalsylvain committed Feb 11, 2025
1 parent ee65f76 commit a242f63
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def _create_hr_employee_from_grap_people(env):
"""
)
columns = [col[0] for col in env.cr.description]
rows = [dict(zip(columns, row, strict=True)) for row in env.cr.fetchall()]
rows = [dict(zip(columns, row)) for row in env.cr.fetchall()] # noqa: B905
for row in rows:
if not row["company_id"]:
continue
Expand Down

0 comments on commit a242f63

Please sign in to comment.