Created
October 17, 2020 00:22
-
-
Save thepycoach/9df8fe2562f6b85ad1fa72495c8cf459 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| try: | |
| single_row_events = grandparent.find_elements_by_class_name('EventRow-styles-event-row') | |
| #remove empty groups | |
| try: | |
| for event in empty_event: | |
| if event in single_row_events: | |
| single_row_events.remove(event) | |
| except: | |
| pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment