Skip to content

Commit

Permalink
Fix codeclimate issue
Browse files Browse the repository at this point in the history
  • Loading branch information
NATSUME Hiroaki committed May 21, 2024
1 parent 751adc3 commit 95b90c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tunny/Util/GrasshopperInOut.cs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ private bool SetAttributes()

private void SetDirection(GH_FishAttribute fishAttr)
{
int[] directions = new int[] { -1 };
int[] directions = new[] { -1 };
if (fishAttr.Value.TryGetValue("Direction", out object fishDirection))
{
if (fishDirection is List<int> dirList)
Expand Down

0 comments on commit 95b90c8

Please sign in to comment.