Fix lint
authorSsnL <tongzhou.wang.1994@gmail.com>
Thu, 10 Jan 2019 07:18:11 +0000 (23:18 -0800)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Thu, 10 Jan 2019 07:20:32 +0000 (23:20 -0800)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/15910

Differential Revision: D13620684

Pulled By: houseroad

fbshipit-source-id: af3b1e2fed55ecd3417f66e549fa921bf4fd758e

test/test_jit.py

index 8df8dba..83019b8 100644 (file)
@@ -2651,12 +2651,14 @@ class TestBatched(TestCase):
                          w_hi, w_hf, w_ho, w_hc, b_i, b_f, b_o, b_c, w_hs, b_s, iter_num_batch, idx_batch)
         self.assertEqual(ys, ybs.examples())
 
+
 def execWrapper(code, glob, loc):
     if PY2:
         exec(code) in glob, loc
     else:
         exec(code, glob, loc)
 
+
 class TestScript(JitTestCase):
     @contextmanager
     def capture_stdout(self):