Skip to content

Commit

Permalink
FIX: bkg broadcast
Browse files Browse the repository at this point in the history
  • Loading branch information
maffettone committed Dec 13, 2023
1 parent 689dcdd commit fc787c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pdf_agents/agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(
)
except AttributeError:
# None available in redis
self._background = 0.0
self._background = np.zeros((2, 1))
if offline:
_default_kwargs = self.get_offline_objects()
else:
Expand Down Expand Up @@ -179,7 +179,7 @@ def background(self):
]
)
except AttributeError:
self._background = 0.0
self._background = np.zeros((2, 1))
return self._background

# @background.setter
Expand Down
2 changes: 1 addition & 1 deletion pdf_agents/startup_scripts/mmm4-kmeans.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
ask_on_tell=False,
report_on_tell=True,
k_clusters=4,
motor_names=["Grid_X", "Grid_Y"],
motor_names=["xstage", "ystage"],
)


Expand Down

0 comments on commit fc787c4

Please sign in to comment.