Skip to content

Commit

Permalink
fix typing typo ha
Browse files Browse the repository at this point in the history
  • Loading branch information
bhuffman-usgs committed May 24, 2024
1 parent 0ad6f17 commit 8ae3ef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/click/_termui_impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def __init__(
self.max_width: int | None = None
self.entered: bool = False
self.current_item: V | None = None
self._is_hidden = not isatty(self.file)
self._is_hidden: bool = not isatty(self.file)
self._last_line: str | None = None

def __enter__(self) -> ProgressBar[V]:
Expand Down

0 comments on commit 8ae3ef8

Please sign in to comment.