From d59399e0ddf457682d7fe13da3a6af427c5aa7f9 Mon Sep 17 00:00:00 2001 From: Bo-Chun Louis Chen <louistw@uab.edu> Date: Fri, 14 May 2021 10:52:13 -0500 Subject: [PATCH] Remove unused import --- agent_template.py | 1 - create_account.py | 1 - prod_rmq_agents/dir_verify.py | 2 -- prod_rmq_agents/get-next-uid-gid.py | 4 ---- prod_rmq_agents/git_commit.py | 1 - prod_rmq_agents/subscribe_mail_lists.py | 3 --- prod_rmq_agents/user_reg_event_logger.py | 1 - 7 files changed, 13 deletions(-) diff --git a/agent_template.py b/agent_template.py index 3e09cfd..b653f81 100644 --- a/agent_template.py +++ b/agent_template.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -import sys import json from rc_rmq import RCRMQ diff --git a/create_account.py b/create_account.py index 6869f98..b9b9067 100755 --- a/create_account.py +++ b/create_account.py @@ -1,6 +1,5 @@ #!/usr/bin/env python3 import json -import sys import rc_util import argparse import signal diff --git a/prod_rmq_agents/dir_verify.py b/prod_rmq_agents/dir_verify.py index fd2fa88..89f98a4 100644 --- a/prod_rmq_agents/dir_verify.py +++ b/prod_rmq_agents/dir_verify.py @@ -1,8 +1,6 @@ #!/usr/bin/env python import os -import sys import json -import shutil import rc_util from pathlib import Path from rc_rmq import RCRMQ diff --git a/prod_rmq_agents/get-next-uid-gid.py b/prod_rmq_agents/get-next-uid-gid.py index 5fbd7e4..56b9b81 100644 --- a/prod_rmq_agents/get-next-uid-gid.py +++ b/prod_rmq_agents/get-next-uid-gid.py @@ -1,10 +1,6 @@ #!/usr/bin/env python -import sys import json -import ldap import time -import logging -import argparse import rc_util from os import popen from rc_rmq import RCRMQ diff --git a/prod_rmq_agents/git_commit.py b/prod_rmq_agents/git_commit.py index 68513a8..a88f55c 100644 --- a/prod_rmq_agents/git_commit.py +++ b/prod_rmq_agents/git_commit.py @@ -1,7 +1,6 @@ #!/usr/bin/env python import os import sh -import sys import json import rc_util from rc_rmq import RCRMQ diff --git a/prod_rmq_agents/subscribe_mail_lists.py b/prod_rmq_agents/subscribe_mail_lists.py index 1f1c83a..f0294f7 100644 --- a/prod_rmq_agents/subscribe_mail_lists.py +++ b/prod_rmq_agents/subscribe_mail_lists.py @@ -1,9 +1,6 @@ #!/usr/bin/env python -import sys import json import smtplib -import logging -import argparse import rc_util from email.message import EmailMessage from rc_rmq import RCRMQ diff --git a/prod_rmq_agents/user_reg_event_logger.py b/prod_rmq_agents/user_reg_event_logger.py index 63b6f5b..1f14ca4 100644 --- a/prod_rmq_agents/user_reg_event_logger.py +++ b/prod_rmq_agents/user_reg_event_logger.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -import sys import json from rc_rmq import RCRMQ -- GitLab