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

Commit

Permalink
Merge pull request #85 from t2y/fix-double-imported
Browse files Browse the repository at this point in the history
Fixed to clean up double imported constants
  • Loading branch information
Lukasa committed Feb 19, 2015
2 parents 7ae118c + 1aa844f commit ab37185
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hyper/http20/hpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from ..compat import to_byte
from .huffman import HuffmanDecoder, HuffmanEncoder
from hyper.http20.huffman_constants import (
REQUEST_CODES, REQUEST_CODES_LENGTH, REQUEST_CODES, REQUEST_CODES_LENGTH
REQUEST_CODES, REQUEST_CODES_LENGTH
)
from .exceptions import HPACKEncodingError

Expand Down
2 changes: 1 addition & 1 deletion test/test_hpack_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from hyper.http20.hpack import Decoder, Encoder
from hyper.http20.huffman import HuffmanDecoder, HuffmanEncoder
from hyper.http20.huffman_constants import (
REQUEST_CODES, REQUEST_CODES_LENGTH, REQUEST_CODES, REQUEST_CODES_LENGTH
REQUEST_CODES, REQUEST_CODES_LENGTH
)
from binascii import unhexlify
from pytest import skip
Expand Down

0 comments on commit ab37185

Please sign in to comment.