Skip to content
This repository has been archived by the owner on Jan 23, 2021. It is now read-only.

Commit

Permalink
Fix pep8 style warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bartromgens committed Nov 11, 2015
1 parent 962d88a commit 4f1b497
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions hemresadapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
import subprocess
import configparser


class HemresAdapter(object):

def __init__(self):
SCRIPTDIR = os.path.dirname(os.path.realpath(__file__))
config_path = os.path.join(SCRIPTDIR, 'ledenlijst.cfg')
scriptdir = os.path.dirname(os.path.realpath(__file__))
config_path = os.path.join(scriptdir, 'ledenlijst.cfg')
assert(os.path.exists(config_path))
config = configparser.RawConfigParser()
config.read(config_path)
Expand Down

0 comments on commit 4f1b497

Please sign in to comment.