Update some bad formatting
This commit is contained in:
parent
8a67085d5b
commit
78931145ac
@ -1,5 +1,6 @@
|
|||||||
""" This module contains classes and functions to contain the kanban board information """
|
""" This module contains classes and functions to contain the kanban board information """
|
||||||
|
|
||||||
|
import sys
|
||||||
import numpy as np
|
import numpy as np
|
||||||
import yaml
|
import yaml
|
||||||
import os
|
import os
|
||||||
@ -20,11 +21,9 @@ class Task:
|
|||||||
class Board:
|
class Board:
|
||||||
def __init__(self, file=None):
|
def __init__(self, file=None):
|
||||||
"""Initialize the Board class, this class has three important class variables.
|
"""Initialize the Board class, this class has three important class variables.
|
||||||
These are:
|
These are: self.sprint | str - name of the current sprint
|
||||||
self.sprint | str - name of the current sprint
|
|
||||||
self.columns | list(str) - columns in kanban board
|
self.columns | list(str) - columns in kanban board
|
||||||
self.tasks | list(list()) - tasks in each column
|
self.tasks | list(list()) - tasks in each column
|
||||||
|
|
||||||
"""
|
"""
|
||||||
self.sprint = None
|
self.sprint = None
|
||||||
self.columns = list()
|
self.columns = list()
|
||||||
|
Reference in New Issue
Block a user