Skip to content

Commit

Permalink
Merge pull request #639 from OpenTrafficCam/feature/7329-remove-valid…
Browse files Browse the repository at this point in the history
…ation-check-which-disallows-same-section-as-start-and-end-of-a-flow

feature/7329 Remove validation check which disallows same section as start and end of a flow
  • Loading branch information
briemla authored Feb 19, 2025
2 parents 86daf78 + 1b8fcd7 commit c2a697f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions OTAnalytics/plugin_ui/customtkinter_gui/toplevel_flows.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,6 @@ def _check_sections(self) -> None:
raise TooFewSectionsForFlowException(
"Please choose both a start and an end section!"
)
elif section_start == section_end:
raise SectionSeveralTimesInFlowException(
"Start and end section have to be different!"
)
else:
for section in sections:
if not self._section_ids.has(section):
Expand Down

0 comments on commit c2a697f

Please sign in to comment.