Skip to content

Commit 0c10113

Browse files
style: format code with Black
This commit fixes the style issues introduced in 2b5ca9f according to the output from Black. Details: #325
1 parent 2b5ca9f commit 0c10113

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/test_minimal.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ async def test_tui_creation():
7676
except Exception as e:
7777
print(f" ✗ TUI creation failed: {e}")
7878
import traceback
79+
7980
traceback.print_exc()
8081
return False
8182

@@ -102,6 +103,7 @@ async def test_session_store():
102103
except Exception as e:
103104
print(f" ✗ SessionStore test failed: {e}")
104105
import traceback
106+
105107
traceback.print_exc()
106108
return False
107109

@@ -138,13 +140,16 @@ async def test_run_tui_mode():
138140

139141
# Check run_tui
140142
print(f" ✓ run_tui is: {run_tui}")
141-
print(f" ✓ run_tui is coroutine function: {asyncio.iscoroutinefunction(run_tui)}")
143+
print(
144+
f" ✓ run_tui is coroutine function: {asyncio.iscoroutinefunction(run_tui)}"
145+
)
142146

143147
return True
144148

145149
except Exception as e:
146150
print(f" ✗ run_tui_mode test failed: {e}")
147151
import traceback
152+
148153
traceback.print_exc()
149154
return False
150155

0 commit comments

Comments
 (0)