Skip to content

Commit

Permalink
merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinAV committed Oct 3, 2024
1 parent ba20fd9 commit d544492
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 0 additions & 4 deletions taipy/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,3 @@
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
# an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.
""""""

from .issue import Issue
from .issue_collector import IssueCollector
4 changes: 4 additions & 0 deletions taipy/common/config/checker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@
# Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
# an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.
""""""

from .issue import Issue
from .issue_collector import IssueCollector
3 changes: 1 addition & 2 deletions taipy/common/config/common/frequency.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ class Frequency(_ReprEnum):
- `WEEKLY`: Weekly frequency, a new cycle is created for each week (from Monday to Sunday).
- `MONTHLY`: Monthly frequency, a new cycle is created for each month.
- `QUARTERLY`: Quarterly frequency, a new cycle is created for each quarter.
- `YEARLY`:
- `YEARLY`: Yearly frequency, a new cycle is created for each year.
The frequency must be provided in the `ScenarioConfig^`.
Expand Down
2 changes: 1 addition & 1 deletion taipy/common/config/global_app/global_app_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def properties(self) -> Dict[str, Any]:

@properties.setter # type: ignore
@_ConfigBlocker._check()
def properties(self, val):
def properties(self, val) -> None:
self._properties = val

def __getattr__(self, item: str) -> Optional[Any]:
Expand Down

0 comments on commit d544492

Please sign in to comment.