Skip to content

Commit 6034a55

Browse files
committed
Invert the default for 'GLOBUS_CLI_FOLD_TABLES'
Per discussion, switch from opt-in to opt-out.
1 parent 35d13a5 commit 6034a55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/globus_cli/termio/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ def term_is_interactive() -> bool:
112112

113113
def fold_tables() -> bool | None:
114114
val = os.getenv("GLOBUS_CLI_FOLD_TABLES")
115-
return val is not None and utils.str2bool(val)
115+
return val is None or utils.str2bool(val)

0 commit comments

Comments
 (0)