Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
remortalite committed Jun 26, 2024
1 parent 33c3fd1 commit f2e97be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gendiff/formatters/plain.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def iter_recursive(data, path=''):

case "nested":
result.extend(iter_recursive(item["children"],
path=item_name))
path=item_name))
result = sorted(result)
return result

Expand Down
6 changes: 3 additions & 3 deletions gendiff/formatters/stylish.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
INDENT_SYMBOL=" "
INDENT_SIZE=4
SHIFT_SIZE=2
INDENT_SYMBOL = " "
INDENT_SIZE = 4
SHIFT_SIZE = 2


def prepare_value(value):
Expand Down

0 comments on commit f2e97be

Please sign in to comment.