Skip to content

Commit

Permalink
Rename DemoWorkflow -> Demo
Browse files Browse the repository at this point in the history
  • Loading branch information
jonavellecuerdo committed Jan 15, 2025
1 parent d66c8b0 commit a8879bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dsc/workflows/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from dsc.workflows.base import Workflow
from dsc.workflows.base.simple_csv import SimpleCSV
from dsc.workflows.demo import DemoWorkflow
from dsc.workflows.demo import Demo
from dsc.workflows.sccs import SCCS

__all__ = ["SCCS", "DemoWorkflow", "SimpleCSV", "Workflow"]
__all__ = ["SCCS", "Demo", "SimpleCSV", "Workflow"]
2 changes: 1 addition & 1 deletion dsc/workflows/demo.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from dsc.workflows.base.simple_csv import SimpleCSV


class DemoWorkflow(SimpleCSV):
class Demo(SimpleCSV):

workflow_name: str = "demo"
submission_system: str = "DSpace@MIT"
Expand Down

0 comments on commit a8879bc

Please sign in to comment.