Skip to content

Commit

Permalink
chore(makefile): ignore URLs with codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl committed Aug 10, 2023
1 parent 99f2077 commit f847586
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ reuse: ## Check REUSE license compliance
codespell: ## Run codespell over the source code and documentation
@codespell --summary \
--skip _build \
--uri-ignore-words-list '*' \
--ignore-words .codespell-ignore \
pycaputo tests examples docs
.PHONY: codespell
Expand Down
2 changes: 1 addition & 1 deletion examples/example-lipschitz-weibull.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def f(x: Array) -> Array:
cdf_empirical = ss.ecdf(smax).cdf

print(
"Optimal paramters: c {c:.12e} loc {loc:.12e} scale {scale:.12e}".format(
"Optimal parameters: c {c:.12e} loc {loc:.12e} scale {scale:.12e}".format(
**cdf_opt.kwds
)
)
Expand Down

0 comments on commit f847586

Please sign in to comment.