Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(293)

Unified Diff: lib/dom/scripts/systeminterface.py

Issue 10692066: Remove unnecessary semicolons from Python code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/dom/scripts/systemhtml.py ('k') | lib/dom/scripts/templateloader.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/scripts/systeminterface.py
diff --git a/lib/dom/scripts/systeminterface.py b/lib/dom/scripts/systeminterface.py
index b9f119da1d79be847323f5ce0d8eea77cdef392b..6814f258f99606dd3d28a90bf4584ec34b19391f 100644
--- a/lib/dom/scripts/systeminterface.py
+++ b/lib/dom/scripts/systeminterface.py
@@ -106,7 +106,7 @@ class DartInterfaceGenerator(systembase.BaseGenerator):
factory_provider = None
constructor_info = AnalyzeConstructor(self._interface)
if constructor_info:
- factory_provider = '_' + typename + 'FactoryProvider';
+ factory_provider = '_' + typename + 'FactoryProvider'
if typename in interface_factories:
factory_provider = interface_factories[typename]
@@ -126,7 +126,7 @@ class DartInterfaceGenerator(systembase.BaseGenerator):
'\n'
' $CTOR($PARAMS);\n',
CTOR=typename,
- PARAMS=constructor_info.ParametersInterfaceDeclaration());
+ PARAMS=constructor_info.ParametersInterfaceDeclaration())
element_type = MaybeTypedArrayElementTypeInHierarchy(
self._interface, self._system._database)
« no previous file with comments | « lib/dom/scripts/systemhtml.py ('k') | lib/dom/scripts/templateloader.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698