Generate a warning instead of printing
This commit is contained in:
parent
f4eeb50a6f
commit
bb9ebfc8f9
1 changed files with 2 additions and 2 deletions
|
|
@ -8,6 +8,7 @@ from enum import Enum
|
|||
import math
|
||||
import struct
|
||||
import io
|
||||
import warnings
|
||||
|
||||
try:
|
||||
import numpy
|
||||
|
|
@ -1038,8 +1039,7 @@ class GridRepetition:
|
|||
if self.b_count < 2:
|
||||
self.b_count = None
|
||||
self.b_vector = None
|
||||
print('Warning: removed b_count and b_vector since b_count == 1')
|
||||
# TODO: warn here
|
||||
warnings.warn('Removed b_count and b_vector since b_count == 1')
|
||||
|
||||
if self.a_count < 2:
|
||||
raise InvalidDataError('Repetition has too-small x-count: '
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue