From e26497b2af8c55dae78ae04e90b6f6590d321335 Mon Sep 17 00:00:00 2001 From: Vanya Belyaev Date: Sun, 13 Oct 2024 14:36:02 +0200 Subject: [PATCH] fix typos --- ostap/logger/table.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ostap/logger/table.py b/ostap/logger/table.py index a6318880..7d7629f3 100644 --- a/ostap/logger/table.py +++ b/ostap/logger/table.py @@ -368,7 +368,7 @@ def table ( rows , if 'local' == fmt or not terminaltables : if kwargs : keys = ', '.join ( key for key in kwargs ) - loger.warning ( 'Ignore keyword arguments: %s' % keys ) + logger.warning ( 'Ignore keyword arguments: %s' % keys ) ## use the local replacement return the_table ( rows , title = title , @@ -400,7 +400,7 @@ def table ( rows , if kwargs : keys = ', '.join ( key for key in kwargs ) - loger.warning ( 'Ignore keyword arguments: %s' % keys ) + logger.warning ( 'Ignore keyword arguments: %s' % keys ) if 'ascii' == fmt or not isatty() : table_instance = terminaltables.AsciiTable ( rows , title )