Skip to content

Commit

Permalink
Merge pull request #1219 from cclauss/patch-1
Browse files Browse the repository at this point in the history
Undefined names: Add missing imports
  • Loading branch information
greysteil authored Sep 10, 2019
2 parents da5f720 + a05e27a commit 1696318
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions python/spec/fixtures/setup_files/with_open.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import codecs
import io
import os
from setuptools import setup, find_packages

file = open("some_file", "r")
Expand Down
4 changes: 2 additions & 2 deletions python/spec/fixtures/setup_files/with_pbr.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup
import setuptools

setup(
setuptools.setup(
packages=setuptools.find_packages(),
install_requires=['raven'],
setup_requires=['pbr'],
Expand Down

0 comments on commit 1696318

Please sign in to comment.