Skip to content

Commit

Permalink
Lint and type-check
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrink10 committed Dec 20, 2024
1 parent e95b44d commit fbc4b62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/basilisp/contrib/pytest/testrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ def _get_fully_qualified_module_names(file: Path) -> list[str]:
This works by traversing up the filesystem looking for the top-most package. From
there, we derive a Python module name referring to the given module path."""
paths = []
for path in sys.path:
root = Path(path)
for pth in sys.path:
root = Path(pth)
if file.is_relative_to(root):
paths.append(root)

Expand Down
1 change: 0 additions & 1 deletion src/basilisp/lang/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
from basilisp.lang.reference import RefBase, ReferenceBase
from basilisp.lang.typing import BasilispFunction, CompilerOpts, LispNumber
from basilisp.lang.util import OBJECT_DUNDER_METHODS, demunge, is_abstract, munge
from basilisp.logconfig import TRACE
from basilisp.util import Maybe

logger = logging.getLogger(__name__)
Expand Down

0 comments on commit fbc4b62

Please sign in to comment.