We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e06d62e commit ce87f89Copy full SHA for ce87f89
1 file changed
completions/fastfetch.fish
@@ -60,9 +60,7 @@ function __fastfetch_complete_structure
60
end
61
62
echo '
63
-import json
64
-import subprocess
65
-import sys
+import json, subprocess, sys
66
67
68
def main():
@@ -110,7 +108,6 @@ def main():
110
108
if __name__ == "__main__":
111
109
try:
112
main()
113
- except Exception as e:
114
- print(f"Error: {e}", file=sys.stderr)
+ except:
115
sys.exit(1)
116
' | python3 | source
0 commit comments