Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
aslist.py: Assign param
Browse files Browse the repository at this point in the history
Don't make a random evaluation and then do nothing with it
  • Loading branch information
GingerAvalanche committed Jan 29, 2023
1 parent 2188d87 commit c2dbc8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bcml/mergers/aslist.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def diff_against(self, other) -> None:
if not other.posts[post_name][param_name] == param_val:
if not post_name in new_posts:
new_posts[post_name] = {}
new_posts[post_name][param_name] == param_val
new_posts[post_name][param_name] = param_val
self.posts = new_posts

def update_from(self, other) -> None:
Expand Down

0 comments on commit c2dbc8d

Please sign in to comment.