Skip to content

Commit

Permalink
fix: use pathlib for os independent path handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed Aug 22, 2019
1 parent 6300838 commit 0d12c9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lbsntransform/config/config.py
Expand Up @@ -262,11 +262,11 @@ def parseArgs(self):
if args.Origin:
self.origin = int(args.Origin)
if args.geocodeLocations:
self.geocode_locations = f'{os.getcwd()}\\'
f'{args.geocodeLocations}'
self.geocode_locations = Path(
args.geocodeLocations)
if args.ignoreInputSourceList:
self.ignore_input_source_list = f'{os.getcwd()}\\'
f'{args.ignoreInputSourceList}'
self.ignore_input_source_list = Path(
args.ignoreInputSourceList)
if args.dbUser_Output:
self.dbuser_output = args.dbUser_Output
self.dbpassword_output = args.dbPassword_Output
Expand Down

0 comments on commit 0d12c9e

Please sign in to comment.