Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Jan 11, 2020
1 parent cc82f34 commit bf46a85
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/make_result_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ def set_stream(self, output_stream):
self.__table_writer.stream = output_stream

def write_type_matrix(self):
self.__table_writer.table_name = ":py:class:`typepy.{0:s}`: :py:attr:`~typepy.{0:s}.strict_level` = {1:d}".format(
tbl_template = ":py:class:`typepy.{0:s}`: :py:attr:`~typepy.{0:s}.strict_level` = {1:d}"
self.__table_writer.table_name = tbl_template.format(
self.typeclass.__name__, self.strict_level
)
self.__table_writer.headers = self.headers
Expand Down Expand Up @@ -342,7 +343,7 @@ def write_result_matrix(output_dir_path):


def write_example(output_dir_path):
opener = PathMaker(output_dir_path)
opener = PathMaker(output_dir_path) # noqa


def main():
Expand Down

0 comments on commit bf46a85

Please sign in to comment.