Fix additional lint

This commit is contained in:
Ryan Beisner
2018-03-22 15:13:53 -05:00
parent 5bb735bb28
commit ce93194a1f
+2 -2
View File
@@ -22,8 +22,8 @@ async def deployed(filter=None):
def main():
# Run the deploy coroutine in an asyncio event loop, using a helper
# that abstracts loop creation and teardown.
print("Current applications: {}".format( ", ".join(loop.run(deployed()))))
print("Current applications: {}".format(", ".join(loop.run(deployed()))))
if __name__ == '__main__':
main()
main()