appease linter

This commit is contained in:
John Burwell 2023-04-28 21:51:12 -05:00
parent d03622e4bd
commit c78228b873
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
__all__ = ['config', 'console', 'controller',
__all__ = ['config', 'console', 'controller',
'logger', 'parser', 'pluginloader']
__version__ = "0.3.0"

View File

@ -33,7 +33,7 @@ class RSLogger(logging.Logger):
if self.config.args.debug:
self.log_level = logging.DEBUG
else:
self.log_level = getattr(logging,
self.log_level = getattr(logging,
self.config.args.log_level.upper())
self.init_logger()