Remove unnecessary import.

This commit is contained in:
Philippe Tourigny 2022-07-16 14:55:18 +09:00
parent 6867f3720b
commit 6982d173c5
1 changed files with 1 additions and 2 deletions

View File

@ -30,7 +30,6 @@ Entries are considered duplicates if they have identical source and target terms
###########################################################################
import csv
from pathlib import Path
import common
@ -49,7 +48,7 @@ def get_glossary_settings():
def set_base_glossary_path():
'''Assign the default path for glossary files'''
configpath = Path(glossary_settings['configpath'])
configpath = glossary_settings['configpath']
base_glossary_path = common.set_basepath(configpath)
return base_glossary_path