Skip to content

Commit

Permalink
fix prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
shazron committed Apr 13, 2023
1 parent 7c235f4 commit b690d83
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,13 @@ async function getProject(imsOrgId, imsOrgTitle, options = { verbose: true }) {
* @param imsOrgTitle
* @param projectTitle
*/
async function getWorkspace(orgId, projectId, imsOrgTitle, projectTitle, options = { verbose: true }) {
async function getWorkspace(
orgId,
projectId,
imsOrgTitle,
projectTitle,
options = { verbose: true },
) {
logger.info(`Initializing workspace selection for ${orgId} -> ${projectId}`);

const { consoleCLI } = await getLibConsoleCLI();
Expand Down Expand Up @@ -359,7 +365,9 @@ async function initSdk(options) {
if (!ignoreCache) {
org = await getAuthorizedOrganization({ verbose: options.verbose });
project = await getProject(org.id, org.name, { verbose: options.verbose });
workspace = await getWorkspace(org.id, project.id, org.name, project.title, { verbose: options.verbose });
workspace = await getWorkspace(org.id, project.id, org.name, project.title, {
verbose: options.verbose,
});
} else {
org = await selectAuthorizedOrganization();
project = await selectProject(org.id, org.name);
Expand Down

0 comments on commit b690d83

Please sign in to comment.