Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
A few other touchups.
Browse files Browse the repository at this point in the history
  • Loading branch information
tscrim committed May 11, 2018
1 parent f3fc941 commit 8263e74
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/sage/combinat/all.py
Expand Up @@ -67,7 +67,7 @@

lazy_import('sage.combinat.partition_tuple', ['PartitionTuple', 'PartitionTuples'])
lazy_import('sage.combinat.partition_kleshchev', ['KleshchevPartitions'])
lazy_import('sage.skew_partition', ['SkewPartition', 'SkewPartitions'])
lazy_import('sage.combinat.skew_partition', ['SkewPartition', 'SkewPartitions'])

#Partition algebra
from .partition_algebra import SetPartitionsAk, SetPartitionsPk, SetPartitionsTk, SetPartitionsIk, SetPartitionsBk, SetPartitionsSk, SetPartitionsRk, SetPartitionsRk, SetPartitionsPRk
Expand Down
4 changes: 2 additions & 2 deletions src/sage/combinat/crystals/all.py
Expand Up @@ -3,10 +3,10 @@
"""
from __future__ import absolute_import

from . import catalog as crystals

from sage.misc.lazy_import import lazy_import

lazy_import('sage.combinat.crystals', 'catalog', 'crystals')

lazy_import('sage.combinat.crystals.letters',
'CrystalOfLetters',
deprecation=(15882, "this is being removed from the global namespace. Use crystals.Letters instead"))
Expand Down
2 changes: 1 addition & 1 deletion src/sage/combinat/partition.py
Expand Up @@ -482,7 +482,7 @@ def __classcall_private__(cls, mu=None, **keyword):
if mu is not None:
if isinstance(mu, Partition):
return mu
return _Partitions(list(mu)) # Partition = Partitions()
return _Partitions(list(mu))
if l == 1:
if 'beta_numbers' in keyword:
return _Partitions.from_beta_numbers(keyword['beta_numbers'])
Expand Down

0 comments on commit 8263e74

Please sign in to comment.