From 33c1bbed641cda19eea8f4a2e3dcee36f755230d Mon Sep 17 00:00:00 2001 From: James Smith Date: Wed, 18 Dec 2024 15:32:16 -0700 Subject: [PATCH] Minor README correction --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c11e82f..93c5ab3 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ These examples assume that ANSI formatting is enabled on the terminal. Refer to Code: ```py -from ansi_string import AnsiString +from ansi_string import AnsiString, AnsiFormat s = AnsiString('This string is red and bold', AnsiFormat.BOLD, AnsiFormat.RED) print(s) ```