aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mlog.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/mlog.py')
-rw-r--r--mesonbuild/mlog.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/mlog.py b/mesonbuild/mlog.py
index 0385e0b..18cbc48 100644
--- a/mesonbuild/mlog.py
+++ b/mesonbuild/mlog.py
@@ -158,9 +158,6 @@ class AnsiText:
def bold(text: str, quoted: bool = False) -> AnsiDecorator:
return AnsiDecorator(text, "\033[1m", quoted=quoted)
-def italic(text: str, quoted: bool = False) -> AnsiDecorator:
- return AnsiDecorator(text, "\033[3m", quoted=quoted)
-
def plain(text: str) -> AnsiDecorator:
return AnsiDecorator(text, "")