expected '}' at end of input

I am trying to upload a bit of code to my arduino and I keep getting this error message:

My_Watlow:44: error: expected '}' at end of input

{

^

My_Watlow:44: error: expected '}' at end of input

My_Watlow:44: error: expected '}' at end of input

My_Watlow:44: error: expected '}' at end of input

exit status 1
expected '}' at end of input

Thank you for your help,
Jaden

I am trying to upload a bit of code

And we have to guess what the code looks like?

It means that it got to the end of your program and it was expecting to find another } symbol but didn't. Every { in your program MUST have a matching } somewhere. Apparently at least one of yours doesn't.

Use Ctrl+T to autoformat the sketch - this will indent blocks (among other things) and makes it much easier to locate the source of problems like this.

What happens when you do the obvious thing and put the } that it's expecting at the end of the program where it's expecting it?

Steve