Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ilikerustoo committed Feb 22, 2019
1 parent 17e749d commit 6606917
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gatorgrouper/utils/gatorgrouper.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

import sys
import logging

from . import parse_arguments
from utils.read_student_file import read_student_file
from utils.remove_absent_students import remove_absent_students
from utils.display import display_welcome_message
Expand All @@ -14,6 +12,8 @@
from utils.group_random import group_random_num_group
from utils.group_rrobin import group_rrobin_group_size
from utils.group_rrobin import group_rrobin_num_group
from utils.defaults import DEFAULT_NUMGRP
from . import parse_arguments


if __name__ == "__main__":
Expand Down
1 change: 0 additions & 1 deletion gatorgrouper/utils/group_random.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import logging
import itertools
from random import shuffle

from .group_scoring import score_groups


Expand Down
1 change: 0 additions & 1 deletion gatorgrouper/utils/parse_arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import argparse
import logging

from .defaults import DEFAULT_CSVFILE
from .defaults import DEFAULT_GRPSIZE
from .defaults import DEFAULT_NUMGRP
Expand Down
2 changes: 2 additions & 0 deletions gatorgrouper/utils/remove_absent_students.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
"""Remove missing students from group assignment"""

import logging


def remove_absent_students(absentee_list, list_of_student_lists):
"""Remove missing students before group assignment"""

logging.info("Removing absent students")
list_of_student_lists_copy = list_of_student_lists[:]
for name in absentee_list:
Expand Down

0 comments on commit 6606917

Please sign in to comment.