Skip to content

Commit a64303b

Browse files
committed
Fixes for basic docs
1 parent 6e32582 commit a64303b

File tree

9 files changed

+11
-16
lines changed

9 files changed

+11
-16
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878

7979
# The theme to use for HTML and HTML Help pages. See the documentation for
8080
# a list of builtin themes.
81-
#
81+
8282
html_theme = 'alabaster'
8383

8484
# Theme options are theme-specific and customize the look and feel of a theme

docs/config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. Config.py
22
33
config.py
4-
=======
4+
=========
55

66
.. automodule:: config
77
:members:

docs/laliga.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. LaLiga module
22
33
LaLiga module
4-
==========
4+
=============
55

66
__init__.py
77
-----------

docs/other.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
.. Files other than config.py, utils and league modules
22
33
Other files
4-
==========
4+
===========
55

66
main.py
7-
-----------
7+
-------
88
.. automodule:: main
99
:members:
1010

1111
constants.py
12-
-------
12+
------------
1313
.. automodule:: constants
1414
:members:
1515

docs/utils.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. Utils.py
22
33
utils.py
4-
=======
4+
========
55

66
.. automodule:: utils
77
:members:

laliga/__init__.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,7 @@
77
from gpiozero import Button
88

99
from .game import Scores
10-
from config import COLS, ROWS, INTERVAL, BRIGHTNESS, GPIO_CONTROL
11-
12-
13-
# def draw_board():
14-
# games = Scores.get_scores()
15-
# print(games)
10+
from config import COLS, ROWS, BRIGHTNESS, GPIO_CONTROL
1611

1712
def draw_board():
1813
"""Draw components of LaLiga game

mlb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from gpiozero import Button
88

99
from .game import Scores
10-
from config import COLS, ROWS, INTERVAL, BRIGHTNESS, GPIO_CONTROL
10+
from config import COLS, ROWS, BRIGHTNESS, GPIO_CONTROL
1111

1212

1313
def draw_board():

nba/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from gpiozero import Button
88

99
from .game import Scores
10-
from config import COLS, ROWS, INTERVAL, BRIGHTNESS, GPIO_CONTROL
10+
from config import COLS, ROWS, BRIGHTNESS, GPIO_CONTROL
1111

1212
def draw_board():
1313
"""Draw components of NBA game

nhl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from gpiozero import Button
88

99
from .game import Scores
10-
from config import COLS, ROWS, INTERVAL, BRIGHTNESS, GPIO_CONTROL
10+
from config import COLS, ROWS, BRIGHTNESS, GPIO_CONTROL
1111

1212
def draw_board() -> int:
1313
"""Draw components of NHL game

0 commit comments

Comments
 (0)