Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
87562c83
Commit
87562c83
authored
8 years ago
by
Nathaniel Manista
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #7432 from thinkerou/fix_undefined_name
Fix undefined name found by pyflakes.
parents
f0ef2249
2b43481f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/python/grpcio_tests/commands.py
+2
-2
2 additions, 2 deletions
src/python/grpcio_tests/commands.py
with
2 additions
and
2 deletions
src/python/grpcio_tests/commands.py
+
2
−
2
View file @
87562c83
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""
Provides distutils command classes for the gRPC Python setup process.
"""
"""
Provides distutils command classes for the gRPC Python setup process.
"""
import
distutils
from
distutils
import
errors
as
_errors
import
glob
import
glob
import
os
import
os
import
os.path
import
os.path
...
@@ -186,7 +186,7 @@ class RunInterop(test.test):
...
@@ -186,7 +186,7 @@ class RunInterop(test.test):
def
finalize_options
(
self
):
def
finalize_options
(
self
):
if
self
.
client
and
self
.
server
:
if
self
.
client
and
self
.
server
:
raise
DistutilsOptionError
(
raise
_errors
.
DistutilsOptionError
(
'
you may only specify one of client or server
'
)
'
you may only specify one of client or server
'
)
def
run
(
self
):
def
run
(
self
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment