Skip to content

Commit

Permalink
update pyright
Browse files Browse the repository at this point in the history
  • Loading branch information
JensDll committed May 13, 2024
1 parent d296a72 commit e9fb700
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
black==24.3.0
pyright==1.1.359
pyright==1.1.362
isort==5.13.2
2 changes: 1 addition & 1 deletion unix/.config/lldbdash/dashboard/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def print_divider(self, size: "terminal_size", module: "Module", out: Output):

def apply_config(self):
path = pathlib.Path.cwd() / Dashboard.settings["config-file"].value
if path.is_file() and Dashboard.settings["auto-apply-config"].value:
if Dashboard.settings["auto-apply-config"].value and path.is_file():
config_modified_time = path.stat().st_mtime
if config_modified_time > self.config_modified_time:
self.config_modified_time = config_modified_time
Expand Down
4 changes: 2 additions & 2 deletions unix/.local/bin/install-ccache
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ __usage() {
# https://manpages.debian.org/coreutils/cat
cat <<EOF
Usage: $(basename "${BASH_SOURCE[0]}") <version> [options]
Options: [defaults in brackets after descriptions]
--help|-h|-? print this message
Options: [default value in bracket after description]
--help|-h|-? print this message and exit
--prefix directory in which to install [$HOME/.local/bin]
EOF

Expand Down

0 comments on commit e9fb700

Please sign in to comment.