Skip to content

Commit

Permalink
remove unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Piees committed Jan 24, 2016
1 parent c204ed5 commit e8c5327
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-
from flask import Flask, url_for, render_template
#import soup
# string to dict module
import ast
import datetime
Expand All @@ -17,7 +16,6 @@
selCourses = []

for x in courses:
# print x['course']
for y in selected:
if x['course'].lower() == y:
selCourses.append(x)
Expand All @@ -36,17 +34,6 @@ def nextLecture():
if switch and (x['dateVal'] != None):
return x['dateVal']


#def get_resource_as_string(name, charset='utf-8'):
# with app.open_resource(name) as f:
# return f.read().decode(charset)


#print "HEI"
#for x in courses:
# if x['course'] == 'is-211'
# print x['course']

# timeplan div
def timeplanDiv():
div = ""
Expand Down

0 comments on commit e8c5327

Please sign in to comment.