From 2f71615ef33b02abd1380e1d41b7283ab10455e9 Mon Sep 17 00:00:00 2001 From: Faraphel Date: Thu, 14 Jul 2022 15:48:06 +0200 Subject: [PATCH] removed a already implemented example and a todo --- source/mkw/Patch/__init__.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/source/mkw/Patch/__init__.py b/source/mkw/Patch/__init__.py index aa22bb3..b906a83 100644 --- a/source/mkw/Patch/__init__.py +++ b/source/mkw/Patch/__init__.py @@ -25,18 +25,4 @@ class InvalidBmgLayerMode(Exception): def __init__(self, layer_mode: str): super().__init__(f"Error : bmg layer mode \"{layer_mode}\" is not implemented") - -# TODO : implement BMG # TODO : recreate SZS - -configuration_example = { - "operation": { # other operation for the file - "bmg-edit": { - "mode": "regex", # regex or id - "template": { - "CWF": "{{ ONLINE_SERVICE }}", # regex type expression - "0x203F": "{{ ONLINE_SERVICE }}" # id type expression - } - } - } -}