Files
novelWriter/nw/gui/exports.py
T
Veronica K. B. Olsen dbd1964ff4 Added export dialog class
2019-10-13 12:18:17 +02:00

25 lines
396 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# -*- coding: utf-8 -*-
"""novelWriter GUI Export Tools
novelWriter GUI Export Tool
================================
Tool for exporting project files to other formats
File History:
Created: 2019-10-13 [0.2.3]
"""
import logging
import nw
from os import path
from PyQt5.QtWidgets import QDialog
logger = logging.getLogger(__name__)
class GuiExport(QDialog):
# END Class GuiExport