We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee6a840 commit 8883fbbCopy full SHA for 8883fbb
1 file changed
pointblank/draft.py
@@ -258,9 +258,9 @@ def __post_init__(self) -> None:
258
)
259
260
# Read the API/examples text from a file
261
- with files("pointblank.data").joinpath("api-docs.txt").open(
262
- encoding="utf-8"
263
- ) as f: # pragma: no cover
+ with (
+ files("pointblank.data").joinpath("api-docs.txt").open(encoding="utf-8") as f
+ ): # pragma: no cover
264
api_and_examples_text = f.read()
265
266
# Get the model name from the `model` value
0 commit comments