Skip to content

Commit 6dab70b

Browse files
committed
Allow bolt cli to run without app, re-use ruff defaults
1 parent 78abf96 commit 6dab70b

File tree

4 files changed

+215
-193
lines changed

4 files changed

+215
-193
lines changed

bolt/cli/cli.py

+23-7
Original file line numberDiff line numberDiff line change
@@ -335,16 +335,32 @@ def get_command(self, ctx, name):
335335

336336
class BoltCommandCollection(click.CommandCollection):
337337
def __init__(self, *args, **kwargs):
338-
bolt.runtime.setup()
338+
sources = []
339+
340+
try:
341+
bolt.runtime.setup()
342+
343+
sources = [
344+
InstalledPackagesGroup(),
345+
EntryPointGroup(),
346+
AppCLIGroup(),
347+
bolt_cli,
348+
]
349+
except bolt.runtime.AppPathNotFound:
350+
click.secho(
351+
"Bolt `app` directory not found. Some commands may be missing.",
352+
fg="yellow",
353+
err=True,
354+
)
355+
356+
sources = [
357+
EntryPointGroup(),
358+
bolt_cli,
359+
]
339360

340361
super().__init__(*args, **kwargs)
341362

342-
self.sources = [
343-
InstalledPackagesGroup(),
344-
EntryPointGroup(),
345-
AppCLIGroup(),
346-
bolt_cli,
347-
]
363+
self.sources = sources
348364

349365

350366
cli = BoltCommandCollection()

bolt/forms/forms.py

+1
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ def get_initial_for_field(self, field, field_name):
289289

290290
class Form(BaseForm, metaclass=DeclarativeFieldsMetaclass):
291291
"A collection of Fields, plus their associated data."
292+
292293
# This is a separate class from BaseForm in order to abstract the way
293294
# self.fields is specified. This class (Form) is the one that does the
294295
# fancy metaclass stuff purely for the semantic sugar -- it allows one

0 commit comments

Comments
 (0)