Skip to content

Commit

Permalink
Ignore E711 in missing-data.ipynb
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Jan 24, 2025
1 parent 0da2d64 commit 7e8286a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/cudf/source/user_guide/missing-data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
}
],
"source": [
"None is None"
"None == None"
]
},
{
Expand Down Expand Up @@ -364,7 +364,7 @@
}
],
"source": [
"s is None"
"s == None"
]
},
{
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ exclude = [
]

[tool.ruff.lint.per-file-ignores]
# We use "== None" to demonstrate null handling in this notebook
"docs/cudf/source/user_guide/missing-data.ipynb" = ["E711"]
# Lots of pytest implicitly injected attributes in conftest-patch.py
"python/cudf/cudf/pandas/scripts/conftest-patch.py" = ["F821"]
"python/cudf/cudf/pandas/scripts/*" = ["D"]
Expand Down

0 comments on commit 7e8286a

Please sign in to comment.