Skip to content

Commit a52d99b

Browse files
author
Yuki I
committed
fix: capitalization in import
Signed-off-by: Yuki I <omoge.real@gmail.com>
1 parent 89f4d78 commit a52d99b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

acapy_agent/anoncreds/default/legacy_indy/registry.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
RevRegDefValue,
7676
)
7777
from ...models.schema import AnonCredsSchema, GetSchemaResult, SchemaResult, SchemaState
78-
from ...models.schema_info import AnonCredsSchemaInfo
78+
from ...models.schema_info import AnoncredsSchemaInfo
7979
from ...revocation import (
8080
CATEGORY_REV_LIST,
8181
CATEGORY_REV_REG_DEF,
@@ -1232,10 +1232,10 @@ async def txn_submit(
12321232

12331233
async def get_schema_info_by_id(
12341234
self, profile: Profile, schema_id: str
1235-
) -> AnonCredsSchemaInfo:
1235+
) -> AnoncredsSchemaInfo:
12361236
"""Get schema info by schema id."""
12371237
schema_id_parts = re.match(r"^(\w+):2:([^:]+):([^:]+)$", schema_id)
1238-
return AnonCredsSchemaInfo(
1238+
return AnoncredsSchemaInfo(
12391239
issuer_id=schema_id_parts.group(1),
12401240
name=schema_id_parts.group(2),
12411241
version=schema_id_parts.group(3),

0 commit comments

Comments
 (0)