Skip to content

Commit 078e839

Browse files
committed
chore: fix linting issues
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: missing_dependencies - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 5d17732 commit 078e839

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/hyp2f1/test/fixtures/python

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/hyp2f1/test/fixtures/python/runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def gen(a, b, c, x, name):
103103
filepath = os.path.join(DIR, name)
104104

105105
# Write the data to the output filepath as JSON:
106-
with open(filepath, "w") as outfile:
106+
with open(filepath, "w", encoding="utf-8") as outfile:
107107
json.dump(data, outfile)
108108

109109
def gen_outliers(name):
@@ -137,7 +137,7 @@ def gen_outliers(name):
137137
filepath = os.path.join(DIR, name)
138138

139139
# Write the data to the output filepath as JSON:
140-
with open(filepath, "w") as outfile:
140+
with open(filepath, "w", encoding="utf-8") as outfile:
141141
json.dump(data, outfile)
142142

143143

0 commit comments

Comments
 (0)