diff --git a/src/bioflowinsighterror.py b/src/bioflowinsighterror.py index df181ec88de651b4474f03d4de06d75cfc22fcd9..dd222bb911354243c204a4ce080bf325f04eb2ee 100644 --- a/src/bioflowinsighterror.py +++ b/src/bioflowinsighterror.py @@ -4,9 +4,9 @@ class BioFlowInsightError(Exception): self.origin = origin #TODO -> add message at the end if(origin!=None): - super().__init__(f"{'\033[91m'}[{num}] Error in the file '{self.origin.get_file_address()}': "+error+'\033[0m') + super().__init__(f"[{num}] Error in the file '{self.origin.get_file_address()}': "+error) else: - super().__init__(f"{'\033[91m'}[{num}] {error}{'\033[0m'}") + super().__init__(f"[{num}] {error}") #To handle the different type of errors; I'm gonna add numbers to the errors #Pair numbers if it's the users fault