Skip to content

headers #4

New issue

Have a question about this project? Sign up for a free account to open an issue and contact its maintainers and the community.

By clicking “Sign up for ”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on ? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions serverlessworkflow_sdk/__init__.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
__author__ = "Serverless Workflow Specification"
__copyright__ = "Copyright 2020-Present The Serverless Workflow Specification Authors"
__license__ = "Apache License, Version 2.0"
3 changes: 3 additions & 0 deletions serverlessworkflow_sdk/action.py
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
__author__ = "Serverless Workflow Specification"
__copyright__ = "Copyright 2020-Present The Serverless Workflow Specification Authors"
__license__ = "Apache License, Version 2.0"
class FunctionRef:
pass

Expand Down
3 changes: 3 additions & 0 deletions serverlessworkflow_sdk/inject_state.py
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
__author__ = "Serverless Workflow Specification"
__copyright__ = "Copyright 2020-Present The Serverless Workflow Specification Authors"
__license__ = "Apache License, Version 2.0"
from serverlessworkflow_sdk.state import State


Expand Down
3 changes: 3 additions & 0 deletions serverlessworkflow_sdk/operation_state.py
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
__author__ = "Serverless Workflow Specification"
__copyright__ = "Copyright 2020-Present The Serverless Workflow Specification Authors"
__license__ = "Apache License, Version 2.0"
from serverlessworkflow_sdk.action import Action
from serverlessworkflow_sdk.state import State

Expand Down
3 changes: 3 additions & 0 deletions serverlessworkflow_sdk/state.py
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
__author__ = "Serverless Workflow Specification"
__copyright__ = "Copyright 2020-Present The Serverless Workflow Specification Authors"
__license__ = "Apache License, Version 2.0"
class State:
type: str

Expand Down
3 changes: 3 additions & 0 deletions serverlessworkflow_sdk/workflow.py
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
__author__ = "Serverless Workflow Specification"
__copyright__ = "Copyright 2020-Present The Serverless Workflow Specification Authors"
__license__ = "Apache License, Version 2.0"
import json

import yaml
Expand Down
3 changes: 3 additions & 0 deletions serverlessworkflow_sdk/workflow_validator.py
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
__author__ = "Serverless Workflow Specification"
__copyright__ = "Copyright 2020-Present The Serverless Workflow Specification Authors"
__license__ = "Apache License, Version 2.0"
import json
import os

Expand Down
3 changes: 3 additions & 0 deletions tests/__init__.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
__author__ = "Serverless Workflow Specification"
__copyright__ = "Copyright 2020-Present The Serverless Workflow Specification Authors"
__license__ = "Apache License, Version 2.0"
3 changes: 3 additions & 0 deletions tests/test_workflow.py
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
__author__ = "Serverless Workflow Specification"
__copyright__ = "Copyright 2020-Present The Serverless Workflow Specification Authors"
__license__ = "Apache License, Version 2.0"
import os
import unittest

Expand Down
3 changes: 3 additions & 0 deletions tests/test_workflow_validator.py
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
__author__ = "Serverless Workflow Specification"
__copyright__ = "Copyright 2020-Present The Serverless Workflow Specification Authors"
__license__ = "Apache License, Version 2.0"
import json
import os
import unittest
Expand Down