Skip to content

Commit

Permalink
Fix syntax errors in link lib.
Browse files Browse the repository at this point in the history
  • Loading branch information
Antlion12 committed Jul 15, 2022
1 parent 8981344 commit c686373
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions link_lib.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
#!/usr/bin/python3

# This library implements a LinkTracker object to query and alert on significant
# price movements in LINK.
#
# Requires Python version >= 3.6.
# This library queries the Zapper API.

import utils
import json
import io
Expand All @@ -13,12 +21,6 @@
from datetime import timedelta
from datetime import datetime
from absl import logging
# This library implements a LinkTracker object to query and alert on significant
https: // arweave.net/ma5O1Wj8D0oJDMzGNVaZRQwHfGmQPBffgzUBD9ytNkg/10.json
# price movements in LINK.
#
# Requires Python version >= 3.6.
# This library queries the Zapper API.


LINK_NAME = 'link'
Expand Down

0 comments on commit c686373

Please sign in to comment.