Skip to content

Commit

Permalink
add folder CWLApp 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 1409b6a commit 5772ea0
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cwl/__init__.py → cwl/CWLApp/__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.cwl_app import CWLApp
from cwl.CWLApp.cwl_app import CWLApp
File renamed without changes.
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 import CWLApp
from cwl.CWLApp 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 import CWLApp
from cwl.CWLApp 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 import CWLApp
from cwl.CWLApp import CWLApp

# Create CommandLineTool objects CWL files

Expand Down

0 comments on commit 5772ea0

Please sign in to comment.