Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix the linter once more
  • Loading branch information
fchapoton committed Sep 25, 2023
commit d11230ad420c93ef061811b73c17d43048cebcb5
2 changes: 1 addition & 1 deletion src/sage/coding/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from sage.misc.lazy_import import lazy_import as _lazy_import

_lazy_import("sage.coding.code_constructions", ["permutation_action",
"walsh_matrix"])
"walsh_matrix"])

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks strange. This should be one liner:

_lazy_import("sage.coding.code_constructions", ["permutation_action", "walsh_matrix"])

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry. I misread.

_lazy_import("sage.coding.linear_code", "LinearCode")

Expand Down
1 change: 1 addition & 0 deletions src/sage/coding/source_coding/huffman.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

from sage.structure.sage_object import SageObject


###########################################################################
#
# Helper functions
Expand Down
2 changes: 1 addition & 1 deletion src/sage/crypto/sbox.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ cdef class SBox(SageObject):
TESTS::

Testing square SBoxes::

sage: from sage.crypto.sbox import SBox
sage: S = SBox(7,6,0,4,2,5,1,3)
sage: S.difference_distribution_table()
Expand Down