Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Al Niessner authored and Al Niessner committed Jul 28, 2022
1 parent bd3487b commit 94c7aec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Python/dawgie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def measure (self, func, args=(), ds:'Dataset'=None):
task = _Metric.diff (s1, s0)
self.__history.append ({'child':child, 'task':task})

if ds:
if ds is not None:
# need to break circular dependancy so
# pylint: disable=import-outside-toplevel
import dawgie.db
Expand Down
2 changes: 1 addition & 1 deletion Python/dawgie/pl/schedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def algorithm_tree_view(): return dawgie.pl.schedule.ae.av
def build (factories, latest, previous):
log.info ('build() - starting to build DAG')
dawgie.pl.schedule.ae = dawgie.pl.dag.Construct(factories)
promote.at = dawgie.pl.schedule.ae
promote.ae = dawgie.pl.schedule.ae
promote.orgainize = dawgie.pl.schedule.organize
dawgie.pl.schedule.que = []
dawgie.pl.schedule.per = []
Expand Down

0 comments on commit 94c7aec

Please sign in to comment.