Skip to content

Commit

Permalink
fixed style issues that are failing the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bobcheng15 committed Oct 17, 2023
1 parent 05323c7 commit cdbea75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sam/onyx/hw_nodes/merge_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def configure(self, attributes):
cmrg_stop_lvl = 1
op = 0
# 0 for compression, 1 for crddrop
cmrg_mode = self.mode
cmrg_mode = self.mode
cfg_kwargs = {
'cmrg_enable': cmrg_enable,
'cmrg_stop_lvl': cmrg_stop_lvl,
Expand Down
2 changes: 1 addition & 1 deletion sam/sim/src/compression.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def update(self):
return
elif (len(self.in_val) > 0 and len(self.in_crd) == 0) \
or (len(self.in_crd) > 0 and len(self.in_val) == 0) \
or (len(self.in_val) == 0 and len(self.in_crd) == 0):
or (len(self.in_val) == 0 and len(self.in_crd) == 0):
self.out_crds = ''
self.out_vals = ''
if self.drop_refs:
Expand Down

0 comments on commit cdbea75

Please sign in to comment.