Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-f-cruz committed Jul 23, 2024
1 parent 33d5668 commit eca5a07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ mccabe = { max-complexity = 14 }
pydocstyle = { convention = 'google' }

[tool.codespell]
skip = '.git,*.pdf,*.svg,./bonsai,*.bonsai,./docs/_build'
skip = '.git,*.pdf,*.svg,./bonsai,*.bonsai,./docs/_build,./build'
ignore-words-list = 'nd'
4 changes: 2 additions & 2 deletions src/aind_behavior_core_analysis/io/data_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,11 @@ def _bin_file_inference_helper(
return candidate_files[0]
elif len(candidate_files) == 0:
raise FileNotFoundError(
"No binary file found for register while infering its location. Try passing the path explicitly"
"No binary file found for register while inferring its location. Try passing the path explicitly"
)
else:
raise ValueError(
"Multiple binary files found for register while infering its location. Try passing the path explicitly"
"Multiple binary files found for register while inferring its location. Try passing the path explicitly"
)


Expand Down

0 comments on commit eca5a07

Please sign in to comment.