This is an automated email from the ASF dual-hosted git repository.
cfnatali pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git
The following commit(s) were added to refs/heads/master by this push:
new 54d357f fix: Add missing comma
54d357f is described below
commit 54d357f4a9e3e42e00b7cc6054fb0203e4947d45
Author: Marek Ć uppa <[email protected]>
AuthorDate: Sat Jan 29 01:23:09 2022 +0100
fix: Add missing comma
* Add missing comma to `__all__`
---
src/python/interface/src/mesos/interface/__init__.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/python/interface/src/mesos/interface/__init__.py
b/src/python/interface/src/mesos/interface/__init__.py
index f986185..a876b07 100644
--- a/src/python/interface/src/mesos/interface/__init__.py
+++ b/src/python/interface/src/mesos/interface/__init__.py
@@ -26,7 +26,7 @@ import sys
__all__ = (
'Executor',
- 'ExecutorDriver'
+ 'ExecutorDriver',
'Scheduler',
'SchedulerDriver',
)