Skip to content

Commit

Permalink
renamed VDFDict's submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
rossengeorgiev committed Apr 1, 2016
1 parent 161c28b commit 0854974
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
File renamed without changes.
5 changes: 1 addition & 4 deletions vdf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@
Module for deserializing/serializing to and from VDF
"""
__version__ = "1.10"
import collections
__author__ = "Rossen Georgiev"

from vdf.vdfDict import VDFDict

import re
import sys
import struct
from io import StringIO as unicodeIO
from vdf.vdict import VDFDict

# Py2 & Py3 compability
if sys.version_info[0] >= 3:
Expand All @@ -29,7 +27,6 @@ def strip_bom(line):

def strip_bom(line):
return line.lstrip(BOMS if isinstance(line, str) else BOMS_UNICODE)



def parse(fp, mapper=dict):
Expand Down
File renamed without changes.

0 comments on commit 0854974

Please sign in to comment.