Skip to content

Commit

Permalink
Restyled by reorder-python-imports
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits committed Feb 20, 2020
1 parent ad144b4 commit eb2533c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion network.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from consts import *
import tensorflow as tf
from tensorflow.python.client import device_lib

import util
from consts import *


class BaseNetwork(object):
Expand Down
10 changes: 6 additions & 4 deletions policy_training.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import os

import numpy as np
import tensorflow as tf

import util
from consts import *
from network import PolicyNetwork
import numpy as np
import os
from players import *
from position import Position
import tensorflow as tf
import util

flags = tf.app.flags
flags.DEFINE_string("run_dir", None, "Run directory")
Expand Down

0 comments on commit eb2533c

Please sign in to comment.