remove redundant paranthesis

main
Marshall Hallenbeck 2023-10-13 11:20:17 -04:00
parent 40f557b8e9
commit e3d6622dee
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class NXCModule:
time_fields = {"msDS-LockoutObservationWindow": (60, "mins"), "msDS-MinimumPasswordAge": (86400, "days"), "msDS-MaximumPasswordAge": (86400, "days"), "msDS-LockoutDuration": (60, "mins")}
if field in time_fields.keys():
value = f"{int((fabs(float(value)) / (10000000 * time_fields[field][0])))} {time_fields[field][1]}"
value = f"{int(fabs(float(value)) / (10000000 * time_fields[field][0]))} {time_fields[field][1]}"
return value