Files
novelWriter/nw/project/document.py
T
2018-09-29 20:33:19 +02:00

27 lines
360 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 Project Document
novelWriter Project Document
================================
Class holding a document
File History:
Created: 2018-09-29 [0.1.0]
"""
import logging
import nw
from os import path
logger = logging.getLogger(__name__)
class NWDoc():
def __init__(self):
return
# END Class NWDoc