-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* I liberally used `# noqa` in sqlalchemy_demo.py beacuse that is not production code... just temporary for reference * I made sure to comment every other use of `# noqa` ====================== (venv) ➜ api git:(mf-flask-api) ✗ ./lint.sh 0 (venv) ➜ api git:(mf-flask-api) ✗ ./format.sh Reformatting create_all_tables.py Reformatting database_wrapper.py Reformatting db_config.py Reformatting db_wrapper.py Reformatting demo.py Reformatting flask_api.py Reformatting gunicorn_config.py Reformatting sqlalchemy_demo.py Reformatting Entity/AudioSampleMetaData.py Reformatting Entity/Clubs.py Reformatting Entity/Corequisites.py Reformatting Entity/Corrections.py Reformatting Entity/Courses.py Reformatting Entity/OfficeHours.py Reformatting Entity/PolyRatings.py Reformatting Entity/Prerequisites.py Reformatting Entity/Professors.py Reformatting Entity/__init__.py Reformatting modules/formatters.py Reformatting modules/validators.py (venv) ➜ api git:(mf-flask-api) ✗ ./lint.sh 0 (venv) ➜ api git:(mf-flask-api) ✗
- Loading branch information
Showing
6 changed files
with
17 additions
and
31 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
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,6 +1,3 @@ | ||
#OfficeHours | ||
|
||
|
||
class OfficeHours: | ||
|
||
def __init__(self, Professors_id, ohroom, ohday, ohtime): | ||
|
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,6 +1,3 @@ | ||
#Prerequisites | ||
|
||
|
||
class Prerequisites: | ||
|
||
def __init__(self, courseId, prereqCourse): | ||
|
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,6 +1,3 @@ | ||
#Professors | ||
|
||
|
||
class Professors: | ||
|
||
def __init__(self, id, firstName, lastName, phoneNumber, researchInterests, | ||
|
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
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