Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
eschan145 authored Jan 19, 2025
1 parent 5f0e3c7 commit ce27b4c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ def main():
"Ex. for help on the function \"validate\", type \"help "
"validate\".")
attrs = [attr for attr in dir(dieknow.shell) \
if not attr.startswith("__"), "method"]
if not attr.startswith("__")]
attrs.append("method")
column_width = (len(attrs) + 1) // 2
left_column = attrs[:column_width]
right_column = attrs[column_width:]
Expand Down

0 comments on commit ce27b4c

Please sign in to comment.