Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
Zerskk committed Jul 11, 2024
1 parent 57908b1 commit 0bc0db0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion app/github/github_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ def __init__(self, repository_name):
# self.branch = branch

self.auth_token = os.environ.get("GITHUB_TOKEN", "")
# GITHUB_TOKEN = ""

self.headers = {'Authorization': 'token ' + self.auth_token,
'Accept': 'application/vnd.github.v3.raw'
Expand Down
4 changes: 2 additions & 2 deletions main-t.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
from app.neo4j_conc.neo4j_writer import Neo4jWriter

async def main():
writer = Neo4jWriter("bolt://localhost:7687", "neo4j", "testneo4j")
writer = Neo4jWriter("bolt://localhost:7687", "neo4j", "neo4jtest")
await writer.write("CREATE (:Person {name: 'Alice'})")
writer.close()
# writer.close()


if __name__ == '__main__':
Expand Down

0 comments on commit 0bc0db0

Please sign in to comment.