X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=make_dungeon.py;h=c7c9b75984c686d8fd34b5b1e043b8ee1d633a0b;hb=4eccfa127cb9f212c9b6ad0ff96ff26588f24e85;hp=26d65f68462ccc1445f21179441dce9fbc28f1b2;hpb=60d70705063266ed23b1e86d11145770087f660f;p=open-adventure.git diff --git a/make_dungeon.py b/make_dungeon.py index 26d65f6..c7c9b75 100755 --- a/make_dungeon.py +++ b/make_dungeon.py @@ -11,7 +11,7 @@ Copyright (c) 2017 by Eric S. Raymond SPDX-License-Identifier: BSD-2-clause """ -# pylint: disable=consider-using-f-string +# pylint: disable=consider-using-f-string,line-too-long,invalid-name,missing-function-docstring,too-many-branches,global-statement,multiple-imports,too-many-locals,too-many-statements,too-many-nested-blocks,no-else-return,raise-missing-from,redefined-outer-name import sys, yaml @@ -21,7 +21,7 @@ C_NAME = "dungeon.c" H_TEMPLATE_PATH = "templates/dungeon.h.tpl" C_TEMPLATE_PATH = "templates/dungeon.c.tpl" -DONOTEDIT_COMMENT = "/* Generated from adventure.yaml - do not hand-hack! */\n\n" +DONOTEDIT_COMMENT = "/* Generated from adventure.yaml - do not hand-hack! */\n/* SPDX-License-Identifier: BSD-2-clause */\n\n" statedefines = ""