isort: Reformat using isort.

This commit is contained in:
PIG208 2021-05-28 17:00:04 +08:00 committed by Tim Abbott
parent 37e2596124
commit 5580c68ae5
162 changed files with 539 additions and 444 deletions

View file

@ -3,21 +3,23 @@
# RSS integration for Zulip
#
import argparse
import calendar
import errno
import hashlib
from html.parser import HTMLParser
import logging
import argparse
import os
import re
import sys
import time
import urllib.parse
from typing import Dict, List, Tuple, Any
from html.parser import HTMLParser
from typing import Any, Dict, List, Tuple
import feedparser
import zulip
VERSION = "0.9" # type: str
RSS_DATA_DIR = os.path.expanduser(os.path.join('~', '.cache', 'zulip-rss')) # type: str
OLDNESS_THRESHOLD = 30 # type: int