Skip to content

Commit

Permalink
shebang should come before comments (#1013)
Browse files Browse the repository at this point in the history
Signed-off-by: afg <afg984@gmail.com>
  • Loading branch information
afq984 authored and alsrgv committed Apr 14, 2019
1 parent abc3d88 commit da85af2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/tensorflow_mnist.py
@@ -1,3 +1,4 @@
#!/usr/bin/env python
# Copyright 2017 Uber Technologies, Inc. All Rights Reserved. # Copyright 2017 Uber Technologies, Inc. All Rights Reserved.
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +13,6 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# ============================================================================== # ==============================================================================
#!/usr/bin/env python


import os import os
import errno import errno
Expand Down
2 changes: 1 addition & 1 deletion examples/tensorflow_mnist_eager.py
@@ -1,3 +1,4 @@
#!/usr/bin/env python
# Copyright 2018 Uber Technologies, Inc. All Rights Reserved. # Copyright 2018 Uber Technologies, Inc. All Rights Reserved.
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -12,7 +13,6 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# ============================================================================== # ==============================================================================
#!/usr/bin/env python


import tensorflow as tf import tensorflow as tf
import horovod.tensorflow as hvd import horovod.tensorflow as hvd
Expand Down

0 comments on commit da85af2

Please sign in to comment.