From 44ead72b8af7dbf36728a958f25f8f8d8e6a0149 Mon Sep 17 00:00:00 2001 From: "[6~" Date: Fri, 17 Jan 2020 11:27:43 -0500 Subject: [PATCH] Placate new pep8-naming N815 warning --- loopy/frontend/fortran/translator.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/loopy/frontend/fortran/translator.py b/loopy/frontend/fortran/translator.py index d7a1b2498..91a5fdc88 100644 --- a/loopy/frontend/fortran/translator.py +++ b/loopy/frontend/fortran/translator.py @@ -339,11 +339,11 @@ class F2LoopyTranslator(FTreeWalkerBase): return [] - map_Logical = map_type_decl - map_Integer = map_type_decl - map_Real = map_type_decl - map_Complex = map_type_decl - map_DoublePrecision = map_type_decl + map_Logical = map_type_decl # noqa: N815 + map_Integer = map_type_decl # noqa: N815 + map_Real = map_type_decl # noqa: N815 + map_Complex = map_type_decl # noqa: N815 + map_DoublePrecision = map_type_decl # noqa: N815 def map_Dimension(self, node): scope = self.scope_stack[-1] -- GitLab