0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-25 11:17:50 +01:00
posthog/ee/clickhouse/queries/paths/paths_event_query.py
Eric Duong 9adfaaaba6
refactor: move path query class from /ee to /posthog (#10140)
* refactor: move files

* refactor: variable naming

* factory pattern

* fix: restore exceptions hog

* remove factory pattern

* refactor: move files and change insight class

* move sql

* types

* fix imports

* fix imports

* refactor: propogate class

* fix import

* refactor: move paths to /posthog

* change imports for clickhousepathsactors

* change order

* fix: restructure imports

* fix imports

* move tests

* add dependency

* remove deprecated

* move tests

* inherit foss tests

* refactor: split stickiness /posthog and /ee (#10085)

* refactor: move files

* refactor: variable naming

* factory pattern

* fix: restore exceptions hog

* remove factory pattern

* fix imports

* fix import

* move test paths

* restore factory pattern

* add mixin

* change imports

* refactor: Foss funnels (#10204)

* refactor: move funnels and split according to foss

* ignore type on init

* fix: bad import
2022-06-09 15:09:00 +00:00

6 lines
126 B
Python

from posthog.queries.paths.paths_event_query import PathEventQuery
class ClickhousePathEventQuery(PathEventQuery):
pass