From 6954a598b3cb15a37ca36b773b5206c1bcbce0f8 Mon Sep 17 00:00:00 2001 From: Tamas Kiss <kiss.tamas@kszk.bme.hu> Date: Sun, 28 Feb 2021 23:51:10 +0100 Subject: [PATCH] style: fix small refactor leftovers --- mattermost_matchmaker/run.py | 4 +--- tests/test_lint.py | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/mattermost_matchmaker/run.py b/mattermost_matchmaker/run.py index 33f12bd..3e24f60 100755 --- a/mattermost_matchmaker/run.py +++ b/mattermost_matchmaker/run.py @@ -1,9 +1,7 @@ #!/usr/bin/env python3 - import argparse - import mattermost -from coffee_bot.match_making import matching_in_channel +from mattermost_matchmaker.matchmaking import matching_in_channel if __name__ == "__main__": parser = argparse.ArgumentParser(description="Make matches between channel members") diff --git a/tests/test_lint.py b/tests/test_lint.py index 6608b2b..712c4c3 100644 --- a/tests/test_lint.py +++ b/tests/test_lint.py @@ -1,6 +1,5 @@ from unittest import TestCase #pylint: disable=missing-class-docstring,missing-function-docstring -import sys import pathlib from pylint import epylint -- GitLab