Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasteles committed Apr 25, 2023
1 parent 37a6751 commit c8aa403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AssemblyExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static IEnumerable<Type> GetAllImplementations<T>(this Assembly assembly)
var type = typeof(T);
return assembly.GetTypes().Where(p =>
type.IsAssignableFrom(p) && p is
{IsInterface: false, IsAbstract: false, IsGenericType: false});
{ IsInterface: false, IsAbstract: false, IsGenericType: false });
}

/// <summary>
Expand Down

0 comments on commit c8aa403

Please sign in to comment.