We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcdc3e9 commit 69f7542Copy full SHA for 69f7542
partitionmanager/types.py
@@ -403,7 +403,8 @@ def __eq__(self, other):
403
404
class ChangePlannedPartition(PlannedPartition):
405
"""
406
- Represents modifications to a given Partition
+ Represents modifications to a Partition supplied during construction. Use
407
+ the parent class' methods to alter this change.
408
409
410
def __init__(self, old_part):
@@ -434,7 +435,9 @@ def __str__(self):
434
435
436
class NewPlannedPartition(PlannedPartition):
437
- Represents a wholly new Partition to be constructed
438
+ Represents a wholly new Partition to be constructed. After construction,
439
+ you must set the number of columns using set_columns before attempting
440
+ to use this in a plan.
441
442
443
def __init__(self):
0 commit comments