Skip to content

Commit

Permalink
[e2e] Remove GHA workflow that creates e2e services docker (#24)
Browse files Browse the repository at this point in the history
* [e2e] Remove GHA workflow that creates e2e services docker
* Fix pylint warnings
  • Loading branch information
igalshilman authored Oct 4, 2024
1 parent 0918076 commit ac0c995
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 55 deletions.
53 changes: 0 additions & 53 deletions .github/workflows/services.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion python/restate/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# directory of this repository or package, or at
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
#
# pylint: disable=R0913,C0301
# pylint: disable=R0913,C0301,R0917
"""
Restate Context
"""
Expand Down
2 changes: 2 additions & 0 deletions python/restate/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
# directory of this repository or package, or at
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
#

# pylint: disable=R0917
"""
This module contains the definition of the Handler class,
which is used to define the handlers for the services.
Expand Down
1 change: 1 addition & 0 deletions python/restate/object.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# directory of this repository or package, or at
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
#
# pylint: disable=R0917
"""
This module defines the Service class for representing a restate service.
"""
Expand Down
1 change: 1 addition & 0 deletions python/restate/server_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# directory of this repository or package, or at
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
#
# pylint: disable=R0917
"""This module contains the restate context implementation based on the server"""

from datetime import timedelta
Expand Down
2 changes: 2 additions & 0 deletions python/restate/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
# directory of this repository or package, or at
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
#

# pylint: disable=R0917
"""
This module defines the Service class for representing a restate service.
"""
Expand Down
2 changes: 1 addition & 1 deletion python/restate/vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"""
wrap the restate._internal.PyVM class
"""
# pylint: disable=E1101
# pylint: disable=E1101,R0917

from dataclasses import dataclass
import typing
Expand Down
2 changes: 2 additions & 0 deletions python/restate/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
# directory of this repository or package, or at
# https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
#

# pylint: disable=R0917
"""
This module defines the Service class for representing a restate service.
"""
Expand Down

0 comments on commit ac0c995

Please sign in to comment.