-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
"""一个和电子科大有关的模块""" | ||
import __main__ | ||
if __main__.__doc__ != 'setup.py': | ||
from . import exceptions | ||
from .login import login | ||
from . import catch_course | ||
from . import query | ||
|
||
from . import exceptions | ||
from .login import login | ||
from . import catch_course | ||
from . import query | ||
|
||
__version__ = "1.1.2.7" | ||
__version__ = "1.1.2.8" | ||
__author__ = "plusls<[email protected]>" | ||
__name__ = "uestc" | ||
__doc__ = "一个和电子科大有关的模块" | ||
|