Skip to content

Commit

Permalink
Add back early access project parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushuk committed Feb 18, 2024
1 parent 483d2de commit 0938bb0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pros/conductor/conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,7 @@ def new_project(self, path: str, no_default_libs: bool = False, **kwargs) -> Pro
if Path(path).exists() and Path(path).samefile(os.path.expanduser('~')):
raise dont_send(ValueError('Will not create a project in user home directory'))

proj = Project(path=path, create=True)

proj = Project(path=path, create=True, early_access=use_early_access)
if 'target' in kwargs:
proj.target = kwargs['target']
if 'project_name' in kwargs and kwargs['project_name'] and not kwargs['project_name'].isspace():
Expand Down

0 comments on commit 0938bb0

Please sign in to comment.