Skip to content

Commit

Permalink
removed dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
d-linko authored Feb 23, 2024
1 parent 7c81334 commit c636a34
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion anms-core/anms/routes/ARIs/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ async def report_ac(agent_id: str, adm: str, report_name: str):
for entry in entries:
curr_values = []
string_values = list(filter(None, re.split(r",|'(.*?)'", entry.string_values))) if entry.string_values else []
# string_values = entry.string_values.split('\',\'') if entry.string_values else []
uint_values = entry.uint_values.split(',') if entry.uint_values else []
int_values = entry.int_values.split(',') if entry.int_values else []
real32_values = entry.real32_values.split(',') if entry.real32_values else []
Expand Down

0 comments on commit c636a34

Please sign in to comment.