Skip to content

Commit

Permalink
add folder cwl_app for the CWLApp package
Browse files Browse the repository at this point in the history
  • Loading branch information
NishchayKarle committed Apr 24, 2024
1 parent 75862a4 commit 57ecb77
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cwl/cwl_app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""This package provides a CWLApp class to run CWL Command Line Tools."""

from cwl.CWLApp.cwl_app import CWLApp
from cwl.cwl_app import CWLApp
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""This package contains the tests for the CWLApp class."""

from cwl.CWLApp import CWLApp
from cwl.cwl_app import CWLApp
2 changes: 1 addition & 1 deletion tests/test_invalid_cwl_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

from cwl.CWLApp import CWLApp
from cwl.cwl_app import CWLApp

invalid_cwl_files = os.path.join(os.getcwd(), "tests", "invalid-cwl-files")

Expand Down
2 changes: 1 addition & 1 deletion tools/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import os

from cwl.CWLApp import CWLApp
from cwl.cwl_app import CWLApp

# Create CommandLineTool objects CWL files

Expand Down

0 comments on commit 57ecb77

Please sign in to comment.