Skip to content

Commit

Permalink
"Satisfy" SONAR.
Browse files Browse the repository at this point in the history
  • Loading branch information
zuckerruebe committed Oct 17, 2023
1 parent db590c2 commit fa95a62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions trnsysGUI/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ def get_all_specs(self) -> _tp.Mapping[str, _tp.Any]:
def find_kernel_specs(self) -> _tp.Mapping[str, str]:
return {_jcksp.NATIVE_KERNEL_NAME: _ipyksp.RESOURCES}

def remove_kernel_spec(self, name):
def remove_kernel_spec(self, name): # /NOSONAR
raise NotImplementedError()

def install_kernel_spec(self, source_dir, kernel_name=None, user=False, replace=None, prefix=None):
def install_kernel_spec(self, source_dir, kernel_name=None, user=False, replace=None, prefix=None): # /NOSONAR
raise NotImplementedError()

def install_native_kernel_spec(self, user=False):
def install_native_kernel_spec(self, user=False): # /NOSONAR
raise NotImplementedError()


Expand Down

0 comments on commit fa95a62

Please sign in to comment.