GITHUB_TOKEN display NameError. How can I use my token from GitHub in Colab?

Dear Huggingface Community,

I recently started to study this course which will help me for my final dissertation. So far I tried to solve the error I faced but this one is pretty tough.

Huggingface Course 5: Creating your own dataset

I literally follwed the tutorial but I can’t seems to use my GitHub token as demonstrated.

GITHUB_TOKEN = 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 
headers = {"Authorization": f"token {GITHUB_TOKEN}"}

I managed to retrieve my token from GitHub but the parser from Google Colab dispay a NameError during the execution:

NameError                                 Traceback (most recent call last)
<ipython-input-15-c6befe9850c5> in <module>()
----> 1 GITHUB_TOKEN = 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
      2 headers = {"Authorization": f"token {GITHUB_TOKEN}"}

NameError: name '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' is not defined

What can I do? Thank you in advance

With thorough reading, I figured a " " is necessary when entering the token.
It is all good now!

GITHUB_TOKEN = "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"
headers = {"Authorization": f"token {GITHUB_TOKEN}"}

I proposed the this edit in the GitHub training repository - Line 125

Thank you!