Skip to content

Commit 51b442e

Browse files
Update for recent gaplint
1 parent d56638c commit 51b442e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gaplint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
disable:
22
- align-assignments
3-
duplicate-function-min-length: 4
3+
dupl-func-min-len: 4

gap/oper.gi

+2-2
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ InstallMethod(ModularProduct, "for a digraph and digraph",
843843
function(D1, D2)
844844
local edge_function;
845845

846-
edge_function := function(u, v, m, n, map) # gaplint: disable=W000
846+
edge_function := function(u, v, m, n, map) # gaplint: disable=W046
847847
# neither m nor n is used, but can't replace them both with _
848848
local w, x, connections;
849849
connections := [];
@@ -872,7 +872,7 @@ InstallMethod(StrongProduct, "for a digraph and digraph",
872872
function(D1, D2)
873873
local edge_function;
874874

875-
edge_function := function(u, v, m, n, map) # gaplint: disable=W000
875+
edge_function := function(u, v, m, n, map) # gaplint: disable=W046
876876
# neither m nor n is used, but can't replace them both with _
877877
local w, x, connections;
878878
connections := [];

0 commit comments

Comments
 (0)