Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
VanyaBelyaev committed Oct 13, 2024
1 parent 0462efd commit e26497b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ostap/logger/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ,
Expand Down Expand Up @@ -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 )
Expand Down

0 comments on commit e26497b

Please sign in to comment.