We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35d13a5 commit 6034a55Copy full SHA for 6034a55
src/globus_cli/termio/context.py
@@ -112,4 +112,4 @@ def term_is_interactive() -> bool:
112
113
def fold_tables() -> bool | None:
114
val = os.getenv("GLOBUS_CLI_FOLD_TABLES")
115
- return val is not None and utils.str2bool(val)
+ return val is None or utils.str2bool(val)
0 commit comments