From 2e396143e58b11aa524876780de975bc06cc5d34 Mon Sep 17 00:00:00 2001 From: Charlie Bini <5003326+cbini@users.noreply.github.com> Date: Tue, 15 Feb 2022 12:31:35 -0600 Subject: [PATCH] :lipstick: --- powerschool/utils.py | 6 +++--- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/powerschool/utils.py b/powerschool/utils.py index e651b69..bc6aaf4 100644 --- a/powerschool/utils.py +++ b/powerschool/utils.py @@ -59,15 +59,15 @@ def get_query_expression(selector, start, end): def generate_historical_queries(current_yearid, query_constraint_selector): - ## transform yearid to constraint value + # transform yearid to constraint value max_constraint_value = transform_yearid(current_yearid, query_constraint_selector) - ## get step and stoppage critera for constraint type + # get step and stoppage critera for constraint type constraint_rules = get_constraint_rules(query_constraint_selector, current_yearid) stop_constraint_value = constraint_rules["stop"] constraint_step_size = constraint_rules["step_size"] - ## generate probing queries + # generate probing queries working_constraint_value = max_constraint_value probing_query_expressions = [] while working_constraint_value >= stop_constraint_value: diff --git a/pyproject.toml b/pyproject.toml index 548c9ef..7930ba7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "powerschool" -version = "3.1.2" +version = "3.1.3" description = "Python client for the PowerSchool API" authors = [ {name = "Charlie Bini", email = "5003326+cbini@users.noreply.github.com"},