8000 feat: add scyjava-stubgen cli command, and `scyjava.types` namespace, which provide type-safe imports with lazy init by tlambert03 · Pull Request #82 · scijava/scyjava · GitHub
[go: up one dir, main page]

Skip to content

feat: add scyjava-stubgen cli command, and scyjava.types namespace, which provide type-safe imports with lazy init #82

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: add future annotations import to _cli.py
  • Loading branch information
tlambert03 committed Apr 23, 2025
commit ab1bc2d6579999deb572ee13288d86a3e24321af
2 changes: 2 additions & 0 deletions src/scyjava/_stubs/_cli.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""The scyjava-stubs executable."""

from __future__ import annotations

import argparse
import importlib
import importlib.util
Expand Down
Loading
0