Skip to content

Commit

Permalink
refactor(core): remove improper const def.
Browse files Browse the repository at this point in the history
  • Loading branch information
CJHwong committed May 6, 2022
1 parent 9164164 commit a362908
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions pyx12lib/core/renderer.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,16 @@
import collections
import copy

import six

from pyx12lib.core import exceptions
from pyx12lib.core.base import RenderedElement, RenderedSegment, RenderedComponent, RenderedCompositeElement
from pyx12lib.core.grammar.element import (
COMPONENT_DELIMITER,
NotUsedElement,
)
from pyx12lib.core.grammar.segment import (
ELEMENT_DELIMITER,
SEGMENT_TERMINATOR,
USAGE_CONDITIONAL,
USAGE_MANDATORY,
USAGE_OPTIONAL,
SEGMENT_TERMINATOR
)

WEIGHT_MAX_DIGITS = 3
MEASURE_MAX_DIGITS = 4


class BaseSegmentRenderer(object):
def __init__(
Expand Down

0 comments on commit a362908

Please sign in to comment.