fix: codacy issues
diff --git a/erpnext/healthcare/doctype/patient_encounter/patient_encounter.js b/erpnext/healthcare/doctype/patient_encounter/patient_encounter.js
index 20ee9da..2410f8e 100644
--- a/erpnext/healthcare/doctype/patient_encounter/patient_encounter.js
+++ b/erpnext/healthcare/doctype/patient_encounter/patient_encounter.js
@@ -25,7 +25,7 @@
 		refresh_field('lab_test_prescription');
 
 		if (!frm.doc.__islocal) {
-			if (frm.doc.docstatus == 1) {
+			if (frm.doc.docstatus === 1) {
 				if (frm.doc.inpatient_status == 'Admission Scheduled' || frm.doc.inpatient_status == 'Admitted') {
 					frm.add_custom_button(__('Schedule Discharge'), function() {
 						schedule_discharge(frm);
@@ -103,7 +103,7 @@
 	},
 
 	practitioner: function(frm) {
-		if(!frm.doc.practitioner) {
+		if (!frm.doc.practitioner) {
 			frm.set_value('practitioner_name', '');
 		}
 	},