Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Feb 8, 2024
1 parent be7c017 commit 414cb09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/labCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export function addNotebookCommands(
}),
commands.addCommand('vim:select-first-cell', {
label: 'Select First Cell',
execute: async (args) => {
execute: async args => {
const current = getCurrent(args);

if (current) {
Expand All @@ -255,7 +255,7 @@ export function addNotebookCommands(
}),
commands.addCommand('vim:select-last-cell', {
label: 'Select Last Cell',
execute: async (args) => {
execute: async args => {
const current = getCurrent(args);

if (current) {
Expand Down

0 comments on commit 414cb09

Please sign in to comment.