Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove some unused imports #260

Merged
merged 4 commits into from Dec 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/yaml/representer.py
Expand Up @@ -3,11 +3,12 @@
'RepresenterError']

from error import *

from nodes import *

import datetime

import sys, copy_reg, types
import copy_reg, types

class RepresenterError(YAMLError):
pass
Expand Down
2 changes: 1 addition & 1 deletion lib3/yaml/representer.py
Expand Up @@ -5,7 +5,7 @@
from .error import *
from .nodes import *

import datetime, sys, copyreg, types, base64, collections
import datetime, copyreg, types, base64, collections

class RepresenterError(YAMLError):
pass
Expand Down
1 change: 0 additions & 1 deletion setup.py
Expand Up @@ -65,7 +65,6 @@
from distutils.core import setup, Command
from distutils.core import Distribution as _Distribution
from distutils.core import Extension as _Extension
from distutils.dir_util import mkpath
from distutils.command.build_ext import build_ext as _build_ext
from distutils.command.bdist_rpm import bdist_rpm as _bdist_rpm
from distutils.errors import DistutilsError, CompileError, LinkError, DistutilsPlatformError
Expand Down