Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 8b93441

Browse files
committed
SDK regeneration
1 parent e37be59 commit 8b93441

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AssemblyAI/Core/Extensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ namespace AssemblyAI.Core;
44

55
internal static class Extensions
66
{
7-
internal static string Stringify(this Enum value)
7+
public static string Stringify(this Enum value)
88
{
99
var field = value.GetType().GetField(value.ToString());
1010
var attribute = (EnumMemberAttribute)
11-
Attribute.GetCustomAttribute(field!, typeof(EnumMemberAttribute))!;
11+
Attribute.GetCustomAttribute(field, typeof(EnumMemberAttribute));
1212
return attribute?.Value ?? value.ToString();
1313
}
1414
}

0 commit comments

Comments
 (0)