From f71272f3ec2ab02b048460e3f4e56f4e284e7c6c Mon Sep 17 00:00:00 2001 From: Ligia Zanchet Date: Mon, 2 Feb 2026 20:05:03 +0100 Subject: [PATCH] Add hello ligia message to UnitConverter app --- app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 260296a..2df1815 100644 --- a/app.py +++ b/app.py @@ -130,4 +130,6 @@ def convert_units(value, from_unit, to_unit, category): if st.button("Convert"): result = convert_units(value, from_unit, to_unit, category) - st.success(f"{value} {from_unit} = {result:.4f} {to_unit}") \ No newline at end of file + st.success(f"{value} {from_unit} = {result:.4f} {to_unit}") + +st.markdown("hello ligia") \ No newline at end of file