我在 xcode 和 vi 上遇到了这个错误。Python 说行类 LeastModel 有一个 IndentationError: expected an indented block。我检查了我在 Xcode 上的偏好,将 4 个空格用于制表符以及我一直在使用制表符的所有地方。请帮我!
def make_model(data,model):
class LeastModel():
"""
linear system solved using linear least squares
This class serves as an example that fulfills the model interface needed by the ransa function.
"""
def __init__(self,input_columns,output_columns):
self.input_columns = input_columns
self.output_columns = output_columns
#self.debug = debug