From d1a53b2bb72608a8ff6bdd18897fcb496480e53e Mon Sep 17 00:00:00 2001 From: Alessandro Berti Date: Fri, 8 Nov 2024 16:09:40 +0100 Subject: [PATCH] added missing license headers --- .../objects/bpmn/layout/variants/__init__.py | 21 +++++++++++++++++++ .../bpmn/layout/variants/graphviz_new.py | 21 +++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/pm4py/objects/bpmn/layout/variants/__init__.py b/pm4py/objects/bpmn/layout/variants/__init__.py index 26eacd524..2d25d92e8 100644 --- a/pm4py/objects/bpmn/layout/variants/__init__.py +++ b/pm4py/objects/bpmn/layout/variants/__init__.py @@ -1 +1,22 @@ +''' + PM4Py – A Process Mining Library for Python +Copyright (C) 2024 Process Intelligence Solutions UG (haftungsbeschränkt) + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3 of the +License, or any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see this software project's root or +visit . + +Website: https://processintelligence.solutions +Contact: info@processintelligence.solutions +''' from pm4py.objects.bpmn.layout.variants import graphviz, graphviz_new diff --git a/pm4py/objects/bpmn/layout/variants/graphviz_new.py b/pm4py/objects/bpmn/layout/variants/graphviz_new.py index 990b587bb..c5b4e7511 100644 --- a/pm4py/objects/bpmn/layout/variants/graphviz_new.py +++ b/pm4py/objects/bpmn/layout/variants/graphviz_new.py @@ -1,3 +1,24 @@ +''' + PM4Py – A Process Mining Library for Python +Copyright (C) 2024 Process Intelligence Solutions UG (haftungsbeschränkt) + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU Affero General Public License as +published by the Free Software Foundation, either version 3 of the +License, or any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public License +along with this program. If not, see this software project's root or +visit . + +Website: https://processintelligence.solutions +Contact: info@processintelligence.solutions +''' from pm4py.objects.bpmn.obj import BPMN from typing import Optional, Dict, Any