Employees with no attendance show up as blank
diff --git a/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py b/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py
index 3bc355c..d7787b5 100644
--- a/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py
+++ b/erpnext/hr/report/monthly_attendance_sheet/monthly_attendance_sheet.py
@@ -26,8 +26,8 @@
total_p = total_a = 0.0
for day in range(filters["total_days_in_month"]):
- status = att_map.get(emp).get(day + 1, "Absent")
- status_map = {"Present": "P", "Absent": "A", "Half Day": "H"}
+ status = att_map.get(emp).get(day + 1, "None")
+ status_map = {"Present": "P", "Absent": "A", "Half Day": "H", "None":" "}
row.append(status_map[status])
if status == "Present":