Skip to content

Commit

Permalink
Merge pull request #155 from aliasrobotics/code-style-import-base
Browse files Browse the repository at this point in the history
Fix code style according to pep8
  • Loading branch information
vmayoral committed Aug 4, 2019
2 parents a273aef + 07ecca1 commit e9bb2c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/import_base.py
Expand Up @@ -5,21 +5,21 @@
from github import Github
import os


class RVDImport:

def __init__(self):
# Authentication for user filing issue (must have read/write access to
# repository to add issue to)
try:
self.token = os.environ['GITHUB_TOKEN'] #ffb0d091869e647e3db4baa4d71dcb5c3c6a17d7
self.token = os.environ['GITHUB_TOKEN']
except KeyError:
print("Make sure that you've GITHUB_TOKEN exported")
exit(1)
# First create a Github instance:
# or using an access token
self.g = Github(self.token)


# def __init__(self, user, password):
# # TODO
# username = os.environ['GITHUB_USER']
Expand Down

0 comments on commit e9bb2c0

Please sign in to comment.