neaten some imports
This commit is contained in:
parent
06cae9ed32
commit
331ea351a2
@ -23,8 +23,20 @@
|
|||||||
"""
|
"""
|
||||||
Contain and organize bibliographic information.
|
Contain and organize bibliographic information.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Standard python modules
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
import string
|
import string
|
||||||
import math
|
import math
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Gramps modules
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
from ...lib.citation import Citation as lib_Citation
|
from ...lib.citation import Citation as lib_Citation
|
||||||
|
|
||||||
class Citation(object):
|
class Citation(object):
|
||||||
|
@ -26,10 +26,22 @@
|
|||||||
"""
|
"""
|
||||||
Provide utilities for printing endnotes in text reports.
|
Provide utilities for printing endnotes in text reports.
|
||||||
"""
|
"""
|
||||||
from ..docgen import FontStyle, ParagraphStyle, FONT_SANS_SERIF
|
|
||||||
from ...lib import NoteType, Citation
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Standard python modules
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# Gramps modules
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
from ...const import GRAMPS_LOCALE as glocale
|
from ...const import GRAMPS_LOCALE as glocale
|
||||||
_ = glocale.translation.gettext
|
_ = glocale.translation.gettext
|
||||||
|
from ..docgen import FontStyle, ParagraphStyle, FONT_SANS_SERIF
|
||||||
|
from ...lib import NoteType, Citation
|
||||||
from ...utils.string import conf_strings
|
from ...utils.string import conf_strings
|
||||||
|
|
||||||
def add_endnote_styles(style_sheet):
|
def add_endnote_styles(style_sheet):
|
||||||
|
Loading…
Reference in New Issue
Block a user