-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Tomás Perez <[email protected]>
- Loading branch information
1 parent
10e172d
commit 488e963
Showing
10 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
"""CLI commands.""" | ||
from __future__ import annotations | ||
|
||
from pyrgo.cli.cmds._audit import audit | ||
from pyrgo.cli.cmds._build import build | ||
from pyrgo.cli.cmds._check import check | ||
from pyrgo.cli.cmds._clean import clean | ||
from pyrgo.cli.cmds._fmt import fmt | ||
from pyrgo.cli.cmds._lock import lock | ||
from pyrgo.cli.cmds._new import new | ||
from pyrgo.cli.cmds._sync import sync | ||
from pyrgo.cli.cmds._test import test | ||
from pyrgo.cli.cmds.audit import audit | ||
from pyrgo.cli.cmds.build import build | ||
from pyrgo.cli.cmds.check import check | ||
from pyrgo.cli.cmds.clean import clean | ||
from pyrgo.cli.cmds.fmt import fmt | ||
from pyrgo.cli.cmds.lock import lock | ||
from pyrgo.cli.cmds.new import new | ||
from pyrgo.cli.cmds.sync import sync | ||
from pyrgo.cli.cmds.test import test | ||
|
||
__all__ = ["lock", "fmt", "check", "sync", "build", "clean", "test", "audit", "new"] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.