Skip to content

Commit 2e285b0

Browse files
committed
Make ruff happy
1 parent 4cf384d commit 2e285b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/appose/python_worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def main() -> None:
283283

284284
# Export all public (non-underscore) attributes to worker.
285285
for key, value in init_namespace.items():
286-
if not key.startswith('_'):
286+
if not key.startswith("_"):
287287
worker.exports[key] = value
288288

289289
# Clean up the temp file.

0 commit comments

Comments
 (0)