Skip to content

Commit

Permalink
Update for recent gaplint
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-mitchell committed Aug 31, 2024
1 parent d56638c commit 51b442e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gaplint.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
disable:
- align-assignments
duplicate-function-min-length: 4
dupl-func-min-len: 4
4 changes: 2 additions & 2 deletions gap/oper.gi
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ InstallMethod(ModularProduct, "for a digraph and digraph",
function(D1, D2)
local edge_function;

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

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

0 comments on commit 51b442e

Please sign in to comment.