Skip to content

Commit f59d8f0

Browse files
authored
Merge pull request #414 from DataRecce/feature/drc-571-enhancement-support-merge-local-and-cloud-state
Recce server should not be able to launch if no state available in the review mode
2 parents 3bc6dc6 + 549e7d0 commit f59d8f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recce/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def load(cls, **kwargs):
4343
context.adapter = DbtAdapter.load(**kwargs)
4444

4545
# Import state
46-
if state_loader:
46+
if state_loader is not None:
4747
state = state_loader.load()
4848
if state:
4949
context.import_state(state)

0 commit comments

Comments
 (0)