Skip to content

Commit a10031c

Browse files
fix: address commitlint issues
1 parent 72a2125 commit a10031c

File tree

15 files changed

+17
-16
lines changed

15 files changed

+17
-16
lines changed

.github/workflows/build-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
jobs:
2525
build-test:
2626
runs-on: ${{ inputs.os }}
27-
27+
2828
env:
2929
CIBW_BUILD: ${{ inputs.build-target }}
3030
# Install a compiler cache on each platform

.github/workflows/commit-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13-
- uses: wagoid/commitlint-github-action@v6
13+
- uses: wagoid/commitlint-github-action@v6

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
/Docs/api/
55
/Docs/doxygen/
66
/node_modules/
7+
78
venv/
8-
*.whl
9+
*.whl

LayerDM/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ slicerMacroBuildLoadableModule(
5959
#-----------------------------------------------------------------------------
6060
if (BUILD_TESTING)
6161
add_subdirectory(Testing)
62-
endif ()
62+
endif ()

LayerDM/Logic/extension.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ target_include_directories(
3636
${${KIT}_SOURCE_DIR}
3737
${${KIT}_BINARY_DIR}
3838
${Slicer_Base_INCLUDE_DIRS}
39-
)
39+
)

LayerDM/MRML/extension.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ target_include_directories(
5050
${${KIT}_BINARY_DIR}
5151
${MRMLCore_INCLUDE_DIRS}
5252
${MRMLLogic_INCLUDE_DIRS}
53-
)
53+
)

LayerDM/MRMLDM/extension.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@ if(${KIT}_AUTOINIT)
8282
)
8383
endif()
8484

85-
target_compile_features(${KIT} PUBLIC cxx_std_17)
85+
target_compile_features(${KIT} PUBLIC cxx_std_17)

LayerDM/tests/packages/build_module/MRMLDM/vtk.module

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ IMPLEMENTABLE
66
DEPENDS
77
SlicerLayerDM::MRMLDisplayableManager
88
DESCRIPTION
9-
"vtkDummyMRMLDisplayableManager"
9+
"vtkDummyMRMLDisplayableManager"

LayerDM/tests/packages/build_module/MRMLDM/vtkMRMLDummyDisplayableManager.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ vtkMRMLDummyDisplayableManager::vtkMRMLDummyDisplayableManager()
1414
//---------------------------------------------------------------------------
1515
vtkMRMLDummyDisplayableManager::~vtkMRMLDummyDisplayableManager()
1616
{
17-
17+
1818
}
1919

2020
//---------------------------------------------------------------------------
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Entry point for slicer dummy package
2-
from slicer_dummy import *
2+
from slicer_dummy import * # noqa: F403

0 commit comments

Comments
 (0)