From f4145bacd2818e9cf94dae5b9e8fe8b0b10fb4f1 Mon Sep 17 00:00:00 2001 From: Nathan McRae Date: Sat, 9 Mar 2024 09:57:00 -0800 Subject: [PATCH] Fix column attribute bug --- SaneTsv/SaneTsv.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SaneTsv/SaneTsv.cs b/SaneTsv/SaneTsv.cs index 366f972..d673656 100644 --- a/SaneTsv/SaneTsv.cs +++ b/SaneTsv/SaneTsv.cs @@ -95,7 +95,7 @@ public class SaneTsv foreach (PropertyInfo property in typeof(T).GetProperties()) { - TypedTsvColumnAttribute attribute = (TypedTsvColumnAttribute)Attribute.GetCustomAttribute(property, typeof(TypedTsvColumnAttribute)); + TsvColumnAttribute attribute = (TsvColumnAttribute)Attribute.GetCustomAttribute(property, typeof(TsvColumnAttribute)); if (attribute == null) { continue;