pdf.py

About this file

This file contains a latex template constant that contains a dictionary of values for the template, such as comments, blocks, and variables.
It also contains an EnvelopeDict class that has pre-set keys for request ID, recipient name, organization, and address.

Code Check Report


app/constants/pdf.py:2:28: W605 invalid escape sequence '\B'
app/constants/pdf.py:4:31: W605 invalid escape sequence '\V'
app/constants/pdf.py:6:30: W605 invalid escape sequence '\#'
                        

Documentation drawn from source code


EnvelopeDict(dict):

Dict with pre-set keys used for filling in a default envelope template.

Sample Dictionary:

{
request_id': 'REQUEST ID',
recipient_name': 'NAME',
organization': 'ORGANIZATION',
street_address': 'STREET ADDRESS',
city': 'CITY',
state': 'STATE',
zipcode: 'ZIPCODE
}

__init__(self,

__setitem__(self, key, value):

Source code