Skip to content

Commit

Permalink
fix issues in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
giannisdoukas committed Jun 9, 2020
1 parent 7c23467 commit b1f5874
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cwlkernel/CWLExecuteConfigurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class CWLExecuteConfigurator:
}

def __init__(self):
"""kernel configurations."""
"""Kernel configurations."""
for property, (default_value, validator) in self.properties.items():
value = os.environ.get(property, default_value)
if not validator(value):
Expand Down
1 change: 0 additions & 1 deletion cwlkernel/CWLKernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@


class CWLKernel(Kernel):

"""Jupyter Notebook kernel for CWL."""
implementation = 'CWLKernel'
implementation_version = '0.1'
Expand Down
2 changes: 1 addition & 1 deletion cwlkernel/git/CWLGitResolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


class CWLGitResolver:
"""CWLGitResolver fetches the required cwl files from a remote git url"""
"""CWLGitResolver fetches the required cwl files from a remote git url."""

def __init__(self, local_directory: Path):
self._local_root_directory = local_directory
Expand Down
2 changes: 1 addition & 1 deletion cwlkernel/kernel_magics.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


def _get_result_path(results_manager: IOFileManager, result_id: str) -> Optional[str]:
"""Return the path of the result file or None"""
"""Return the path of the result file or None."""
results = sorted(
filter(lambda item: item[1]['id'] == result_id, results_manager.get_files_registry().items()),
key=lambda item: item[1]['result_counter']
Expand Down

0 comments on commit b1f5874

Please sign in to comment.