cleanup: Remove duplicate imports.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg 2020-04-18 17:01:55 -07:00 committed by Tim Abbott
parent adde59e5c3
commit f5d96dbcce
4 changed files with 0 additions and 7 deletions

View file

@ -1,7 +1,5 @@
import json import json
import re import re
from zulip_bots.lib import Any
from typing import Any, Dict, Tuple from typing import Any, Dict, Tuple
QUESTION = 'How should we handle this?' QUESTION = 'How should we handle this?'

View file

@ -3,8 +3,6 @@ import json
import requests import requests
import random import random
import re import re
from zulip_bots.lib import Any
from typing import Optional, Any, Dict, Tuple from typing import Optional, Any, Dict, Tuple
class NotAvailableException(Exception): class NotAvailableException(Exception):

View file

@ -1,7 +1,5 @@
import requests import requests
import logging import logging
from zulip_bots.lib import Any
from typing import Optional, Any, Dict from typing import Optional, Any, Dict
# See readme.md for instructions on running this code. # See readme.md for instructions on running this code.

View file

@ -4,7 +4,6 @@ import random
import logging import logging
from copy import deepcopy from copy import deepcopy
from typing import Any, Dict, Tuple, List from typing import Any, Dict, Tuple, List
import random
class BadMoveException(Exception): class BadMoveException(Exception):