Skip to content

Commit 138134f

Browse files
committed
fix build errors in module class builder
1 parent 56ba54f commit 138134f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Discord.Net.Interactions/Builders/ModuleClassBuilder.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using Discord.Interactions.Attributes.Modals;
21
using System;
32
using System.Collections.Generic;
43
using System.Linq;
@@ -782,7 +781,7 @@ private static void BuildFileUploadComponent(FileUploadComponentBuilder builder,
782781
builder.WithType(propertyInfo.PropertyType);
783782
builder.PropertyInfo = propertyInfo;
784783

785-
foreach(var attribute in attributes)
784+
foreach (var attribute in attributes)
786785
{
787786
switch (attribute)
788787
{

0 commit comments

Comments
 (0)