From eb6d0cce9eaeb61549593914d8f7d667a51b02ae Mon Sep 17 00:00:00 2001 From: superjom Date: Mon, 25 Dec 2017 19:48:28 +0800 Subject: [PATCH] code format --- visualdl/python/test_storage.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/visualdl/python/test_storage.py b/visualdl/python/test_storage.py index 413ac306..328ee74e 100644 --- a/visualdl/python/test_storage.py +++ b/visualdl/python/test_storage.py @@ -4,13 +4,15 @@ import unittest import random import time + class StorageTest(unittest.TestCase): def setUp(self): self.dir = "./tmp/storage_test" def test_read(self): print 'test write' - self.writer = storage.StorageWriter(self.dir, sync_cycle=1).as_mode("train") + self.writer = storage.StorageWriter( + self.dir, sync_cycle=1).as_mode("train") scalar = self.writer.scalar("model/scalar/min") # scalar.set_caption("model/scalar/min") for i in range(10): -- GitLab