Skip to content

Commit cda6151

Browse files
committed
Added extra newline in R code block
1 parent d580e6b commit cda6151

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/indicatorsets/views.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def create_query_code(request):
413413
python_code_blocks.append(python_code_block)
414414
r_code_block = (
415415
'<pre class="code-block">'
416-
+ "<code>libary(covidcast)<br>"
416+
+ "<code>libary(covidcast)<br><br>"
417417
+ f'cc_data <- covidcast_signal(data_source = "{indicator["data_source"]}", signal = "{indicator["indicator"]}", start_day = "{start_day}", end_day = "{end_day}", geo_type = "{geo_type}", geo_values = c({r_geos}))'
418418
+ "</code>"
419419
+ "</pre>"
@@ -433,7 +433,7 @@ def create_query_code(request):
433433
python_code_blocks.append(python_code_block)
434434
r_code_block = (
435435
'<pre class="code-block">'
436-
+ "<code>libary(covidcast)<br>"
436+
+ "<code>libary(covidcast)<br><br>"
437437
+ f'cc_data <- covidcast_signal(data_source = "{indicator["data_source"]}", signal = "{indicator["indicator"]}", start_day = "{start_date}", end_day = "{end_date}", geo_type = "{geo_type}", geo_values = c({r_geos}))'
438438
+ "</code>"
439439
+ "</pre>"

0 commit comments

Comments
 (0)