diff --git a/loopy/frontend/fortran/translator.py b/loopy/frontend/fortran/translator.py
index d7a1b2498af583bc9ff97ba743ccc5ed8bd25d3a..91a5fdc88f02a99c6064f6b9944b08de662a27a8 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]