mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
remove allow-untyped-defs from _export/db/logging.py (#144093)
Pull Request resolved: https://github.com/pytorch/pytorch/pull/144093 Approved by: https://github.com/Skylion007
This commit is contained in:
parent
ad09395674
commit
e9e18a9617
1 changed files with 3 additions and 4 deletions
|
|
@ -1,7 +1,6 @@
|
||||||
# mypy: allow-untyped-defs
|
from typing import Optional
|
||||||
|
|
||||||
|
def exportdb_error_message(case_name: str) -> str:
|
||||||
def exportdb_error_message(case_name: str):
|
|
||||||
from .examples import all_examples
|
from .examples import all_examples
|
||||||
from torch._utils_internal import log_export_usage
|
from torch._utils_internal import log_export_usage
|
||||||
|
|
||||||
|
|
@ -19,7 +18,7 @@ def exportdb_error_message(case_name: str):
|
||||||
return f"{case_name} is unsupported."
|
return f"{case_name} is unsupported."
|
||||||
|
|
||||||
|
|
||||||
def get_class_if_classified_error(e):
|
def get_class_if_classified_error(e: Exception) -> Optional[str]:
|
||||||
"""
|
"""
|
||||||
Returns a string case name if the export error e is classified.
|
Returns a string case name if the export error e is classified.
|
||||||
Returns None otherwise.
|
Returns None otherwise.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue