Skip to content

Commit

Permalink
🎨 Remove an unused export from screens
Browse files Browse the repository at this point in the history
Nothing else is using it outwith of screens, so there's little point in
making a point of exporting it.
  • Loading branch information
davep committed Jan 19, 2025
1 parent 1346132 commit 468d812
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/braindrop/app/screens/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@

##############################################################################
# Local imports.
from .downloading import Downloading
from .main import Main
from .token_input import TokenInput

##############################################################################
# Exports.
__all__ = ["Downloading", "Main", "TokenInput"]
__all__ = ["Main", "TokenInput"]

### __init__.py ends here

0 comments on commit 468d812

Please sign in to comment.