build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / 2.0 / OCPP20ServiceUtils.ts
index 8d6ccdf5b3ff9bd2b54d100beb7e3144fab65b26..c924b2400187931cfe4406d96ddc18bd72307787 100644 (file)
@@ -9,13 +9,13 @@ export class OCPP20ServiceUtils extends OCPPServiceUtils {
   public static parseJsonSchemaFile<T extends JsonType>(
     relativePath: string,
     moduleName?: string,
-    methodName?: string
+    methodName?: string,
   ): JSONSchemaType<T> {
     return super.parseJsonSchemaFile<T>(
       relativePath,
       OCPPVersion.VERSION_20,
       moduleName,
-      methodName
+      methodName,
     );
   }
 }