Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class RedditSearchSourceOpDesc extends PythonSourceOperatorDescriptor {
| client_secret = $clientSecretReal
| limit = $limit
| query = $queryReal
| sorting = ${sorting.getName}
| sorting = '${sorting.getName}'
|
| @overrides
| def produce(self) -> Iterator[Union[TupleLike, TableLike, None]]:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class ContinuousErrorBandsOpDesc extends PythonOperatorDescriptor {
fig.add_trace(go.Scatter(
x=table[${bandConf.xValue}],
y=table[${bandConf.yValue}],
mode=${bandConf.mode.getModeInPlotly},
mode='${bandConf.mode.getModeInPlotly}',
$colorPart
$namePart
))"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class ContourPlotOpDesc extends PythonOperatorDescriptor {
| y=np.linspace(min(y), max(y), grid_size),
| z=grid_z,
| connectgaps=connGaps,
| contours_coloring =${coloringMethod.getColoringMethod},
| contours_coloring ='${coloringMethod.getColoringMethod}',
| colorbar_title=$z
| ))
| fig.update_layout(title='Contour Plot')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class Histogram2DOpDesc extends PythonOperatorDescriptor {
assert(yBins > 0, s"Y Bins must be > 0, but got $yBins")

val normArg =
pyb"histnorm=${normalize.getValue},"
pyb"histnorm='${normalize.getValue}',"

pyb"""
|from pytexera import *
Expand Down
Loading