Skip to content

Commit

Permalink
pylint: disable import-outside-toplevel for one openpyxl use
Browse files Browse the repository at this point in the history
  • Loading branch information
Wooble committed Nov 7, 2019
1 parent eecb718 commit 4f57389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycounter/report.py
Expand Up @@ -639,7 +639,7 @@ def parse_xlsx(filename):
:param filename: path to XLSX-format COUNTER report file.
"""
from openpyxl import load_workbook # pylint: disable import-outside-toplevel
from openpyxl import load_workbook # pylint: disable=import-outside-toplevel

with open(filename, "rb") as xlsx_file:
workbook = load_workbook(xlsx_file)
Expand Down

0 comments on commit 4f57389

Please sign in to comment.