Skip to content

Commit c02f9a5

Browse files
committed
Remove comma so it is not interpreted as a tuple
This was causing issues since it was interpreted as a tuple... Signed-off-by: Patrick Avery <[email protected]>
1 parent b83f9fa commit c02f9a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hexrdgui/image_canvas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ def beam_vector_changed(self):
894894
# Right now, hexrd doesn't want this to be inf.
895895
# Maybe that will change in the future...
896896
self.iviewer.instr.source_distance = (
897-
beam_config['source_distance']['value'],
897+
beam_config['source_distance']['value']
898898
)
899899

900900
self.update_overlays()

0 commit comments

Comments
 (0)