This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
dora-rs
/
dora
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
124
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Making exception wider for testing purposes
tags/v0.3.11-rc1
haixuantao
10 months ago
parent
d0b304c397
commit
8f3061e873
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
node-hub/pyarrow-assert/pyarrow_assert/main.py
+1
-1
node-hub/pyarrow-sender/pyarrow_sender/main.py
+ 1
- 1
node-hub/pyarrow-assert/pyarrow_assert/main.py
View File
@@ -38,7 +38,7 @@ def main():
try:
data = ast.literal_eval(data)
except
ValueError:
except
Exception: # noqa
print("Passing input as string")
if isinstance(data, (str, int, float)):
+ 1
- 1
node-hub/pyarrow-sender/pyarrow_sender/main.py
View File
@@ -42,7 +42,7 @@ def main():
)
try:
data = ast.literal_eval(data)
except
ValueError:
except
Exception: # noqa
print("Passing input as string")
if isinstance(data, (str, int, float)):
Write
Preview
Loading…
Cancel
Save