Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit ab37185

Browse files
committed
Merge pull request #85 from t2y/fix-double-imported
Fixed to clean up double imported constants
2 parents 7ae118c + 1aa844f commit ab37185

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hyper/http20/hpack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from ..compat import to_byte
1414
from .huffman import HuffmanDecoder, HuffmanEncoder
1515
from hyper.http20.huffman_constants import (
16-
REQUEST_CODES, REQUEST_CODES_LENGTH, REQUEST_CODES, REQUEST_CODES_LENGTH
16+
REQUEST_CODES, REQUEST_CODES_LENGTH
1717
)
1818
from .exceptions import HPACKEncodingError
1919

test/test_hpack_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from hyper.http20.hpack import Decoder, Encoder
88
from hyper.http20.huffman import HuffmanDecoder, HuffmanEncoder
99
from hyper.http20.huffman_constants import (
10-
REQUEST_CODES, REQUEST_CODES_LENGTH, REQUEST_CODES, REQUEST_CODES_LENGTH
10+
REQUEST_CODES, REQUEST_CODES_LENGTH
1111
)
1212
from binascii import unhexlify
1313
from pytest import skip

0 commit comments

Comments
 (0)