Skip to content

Commit

Permalink
SafeConfigParser -> ConfigParser to silence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesamcl committed Apr 29, 2020
1 parent 71b6e38 commit 216fba9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dataloading/oxo/OlsMappingExtractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import urllib.request, urllib.parse, urllib.error
import json
import csv
from configparser import SafeConfigParser
from configparser import ConfigParser
from optparse import OptionParser

parser = OptionParser()
Expand All @@ -22,7 +22,7 @@

(options, args) = parser.parse_args()

config = SafeConfigParser()
config = ConfigParser()
config.read(options.config)

OXO = OxoClient.OXO()
Expand Down

0 comments on commit 216fba9

Please sign in to comment.