diff --git a/compiler/errors.py b/compiler/errors.py index 6dde985..f43ed21 100644 --- a/compiler/errors.py +++ b/compiler/errors.py @@ -29,6 +29,8 @@ class LevelType: class Levels(enum.Enum): + Info = LevelType("info", color="cyan") + Note = LevelType("note", color="magenta") Warning = LevelType("warning", color="light_yellow") Error = LevelType("error", color="red")