Skip to content

Commit df6ee12

Browse files
authored
fix none error (#393)
1 parent eb76a0c commit df6ee12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lean/commands/cloud/push.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ def push(project: Optional[Path], encrypt: Optional[bool], decrypt: Optional[boo
6868
if key is not None:
6969
raise RuntimeError(f"Encryption key can only be specified when pushing a single project.")
7070
projects_to_push = [p.parent for p in Path.cwd().rglob(PROJECT_CONFIG_FILE_NAME)]
71-
push_manager.push_projects(projects_to_push, encryption_action, key)
71+
push_manager.push_projects(projects_to_push, [], encryption_action, key)

0 commit comments

Comments
 (0)