Skip to content

Commit 382d9e7

Browse files
committed
refactor: lint fixes for client-config-builder
1 parent faef876 commit 382d9e7

9 files changed

Lines changed: 12 additions & 1 deletion

File tree

packages/polywrap-client-config-builder/polywrap_client_config_builder/configures/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""This package contains the configure classes for the client config builder."""
12
from .base_configure import *
23
from .env_configure import *
34
from .interface_configure import *

packages/polywrap-client-config-builder/polywrap_client_config_builder/configures/base_configure.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
"""This module contains the base configure class for the client config builder."""
12
from ..types import BuilderConfig, ClientConfigBuilder
23

34

45
class BaseConfigure(ClientConfigBuilder):
5-
"""BaseConfigure is the base class for builder configures.
6+
"""BaseConfigure is the base configure class for the client config builder.
67
78
Attributes:
89
config (BuilderConfig): The internal configuration.

packages/polywrap-client-config-builder/polywrap_client_config_builder/configures/env_configure.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""This module contains the env configure class for the client config builder."""
12
from typing import Dict, List, Union
23

34
from polywrap_core import Env, Uri

packages/polywrap-client-config-builder/polywrap_client_config_builder/configures/interface_configure.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""This module contains the interface configure class for the client config builder."""
12
from typing import Dict, List, Union
23

34
from polywrap_core import Uri

packages/polywrap-client-config-builder/polywrap_client_config_builder/configures/package_configure.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""This module contains the package configure class for the client config builder."""
12
from typing import Dict, List, Union
23

34
from polywrap_core import Uri, UriPackageOrWrapper, WrapPackage

packages/polywrap-client-config-builder/polywrap_client_config_builder/configures/redirect_configure.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""This module contains the redirect configure class for the client config builder."""
12
from typing import Dict, List, Union
23

34
from polywrap_core import Uri

packages/polywrap-client-config-builder/polywrap_client_config_builder/configures/resolver_configure.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""This module contains the resolver configure class for the client config builder."""
12
from typing import List
23

34
from polywrap_core import UriResolver

packages/polywrap-client-config-builder/polywrap_client_config_builder/configures/wrapper_configure.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""This module contains the wrapper configure class for the client config builder."""
12
from typing import Dict, List, Union
23

34
from polywrap_core import Uri, UriPackageOrWrapper, Wrapper

packages/polywrap-client-config-builder/polywrap_client_config_builder/types/client_config_builder.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
"""This module contains the client config builder class."""
12
# pylint: disable=too-many-public-methods
23
from abc import ABC, abstractmethod
34
from typing import Dict, List, Optional, Union
@@ -17,6 +18,8 @@
1718

1819

1920
class ClientConfigBuilder(ABC):
21+
"""Defines the interface for the client config builder."""
22+
2023
config: BuilderConfig
2124

2225
@abstractmethod

0 commit comments

Comments
 (0)