Tests: Fix linting

Also change how wheel_test works for safe import testing rather than
trying to import the package which can cause system issues.

Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
kingbri
2023-12-13 23:05:50 -05:00
parent 036ba2669c
commit 59729e2a4a
2 changed files with 18 additions and 23 deletions

View File

@@ -9,7 +9,8 @@ for (module, modules) in loader:
print(module, modules)
generator = container.generate_gen("Once upon a tim", token_healing = True)
for g in generator: print(g, end = "")
for g in generator:
print(g, end = "")
container.unload()
del container