During the run time to check my class, I received an indentation error
class Category:
"""
Creates category class, possible child class of products
Parameters
name : str, default blank
Desired name of category
category_type : str, default blank
type of category
model : int , default 0
model of category in years
"""
#Declaring __init__()Function
def __init__(self,name="",category_type="",model=0):
self.name = name
self.category_type = category_type
self.model = model
print (name,"Created!") # Run when init is finished.
#Declaring print_status()Function
def print_status(self):
print("Category :",self.name,"\n category type :"self.category_type,"\n Model :"self.model)
p1 = Category("Iphone","Technology",2020)
p1.print_status()
the error message : File "", line 13 """
^ IndentationError: expected an indented block