Skip to content

Commit

Permalink
chore: tidy codes
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Cherng <[email protected]>
  • Loading branch information
jfcherng committed Nov 16, 2023
1 parent e1f0e2c commit cb4efd0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion boot.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
def reload_plugin() -> None:
import sys

# Remove all previously loaded plugin modules.
# remove all previously loaded plugin modules
prefix = f"{__package__}."
for module_name in tuple(filter(lambda m: m.startswith(prefix) and m != __name__, sys.modules)):
del sys.modules[module_name]
Expand Down
1 change: 0 additions & 1 deletion plugin/TodoReview.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import re
import threading
import timeit

from typing import Any, Callable, Dict, Generator, Iterable, Iterator, List, Optional, Tuple

import sublime
Expand Down

0 comments on commit cb4efd0

Please sign in to comment.