From c4fa15a3253f943e928d5ac2700b483a3453c806 Mon Sep 17 00:00:00 2001 From: Michael Kupietz <26891995+kupietools@users.noreply.github.com> Date: Sun, 22 Feb 2026 20:15:19 -0500 Subject: [PATCH] Fix parameter name from 'imit_type' to 'limit_type' --- plugins/yahoo_stock_ticker.18m.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/yahoo_stock_ticker.18m.py b/plugins/yahoo_stock_ticker.18m.py index 1e621c8..391975f 100755 --- a/plugins/yahoo_stock_ticker.18m.py +++ b/plugins/yahoo_stock_ticker.18m.py @@ -130,7 +130,7 @@ def read_data_file(data_file): return content -def write_data_file(data_file, imit_type, symbol, price): +def write_data_file(data_file, limit_type, symbol, price): with open(data_file, 'a') as f: f.write(limit_type + ' ' + symbol + ' ' + price + '\n') f.close()