Skip to content

Commit

Permalink
Silent pylint
Browse files Browse the repository at this point in the history
* CLOUDBLD-7764

Signed-off-by: Robert Cerven <[email protected]>
  • Loading branch information
rcerven committed Nov 11, 2021
1 parent 7b3f2c4 commit 707ad3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion osbs/build/plugins_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ def __init__(self, user_params):
customize_conf_path,
)

@abc.abstractproperty
@property
@abc.abstractmethod
def pt_path(self):
"""Property returns path to plugins template JSON file
Expand Down
4 changes: 2 additions & 2 deletions osbs/cli/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ def _count_sizes(self):

self.header_format_str = "+".join(header_sepa_format_list)
self.header_data = {}
for k in self.col_widths:
self.header_data[k] = "-" * self.col_widths[k]
for col, wid in self.col_widths.items():
self.header_data[col] = "-" * wid

def get_all_longest_col_lengths(self):
"""
Expand Down

0 comments on commit 707ad3c

Please sign in to comment.