Skip to content
This repository has been archived by the owner on May 9, 2024. It is now read-only.

Commit

Permalink
This too
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Mar 7, 2024
1 parent f7b5c32 commit ba75867
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
.cache/
.coverage
.pytest_cache/
/.mypy_cache/
4 changes: 2 additions & 2 deletions sudoku/set_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
import functools
import pyNN.spiNNaker as p
from utils import puzzles, get_rates
from sudoku.utils import puzzles, get_rates


class GUI(object):
Expand Down Expand Up @@ -94,7 +94,7 @@ def __init__(self, n_total, n_cell, n_N, default_rate, max_rate, puzzle):
def start(self):
self._root.mainloop()

def on_start(self, label, connection):
def on_start(self, label, connection): # pylint: disable=unused-argument
self._button["state"] = "normal"
self._cycle_button["state"] = "normal"

Expand Down

0 comments on commit ba75867

Please sign in to comment.