From d75ae5f4c85e37130e311dc8bb5576ba184a9e83 Mon Sep 17 00:00:00 2001
From: Brady James Garvin <bgarvin@cse.unl.edu>
Date: Tue, 2 Jan 2018 12:36:10 -0600
Subject: [PATCH] Updated project for consistency with Buildozer projects and
 for latest version of PyCharm.

---
 .gitignore | 6 ++++--
 nim.py     | 1 +
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index d23046b..992a27a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
-.idea
 *.pyc
 *.pyo
-*.apk
+
+.idea
+.buildozer
+bin
diff --git a/nim.py b/nim.py
index 81bba44..4432759 100644
--- a/nim.py
+++ b/nim.py
@@ -88,6 +88,7 @@ def make_computer_move(position):
             next_position[i] = j
             if evaluate(next_position) is Evaluation.WIN:
                 return next_position
+    # noinspection PyUnboundLocalVariable
     return next_position
 
 
-- 
GitLab