Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
daibhin committed Aug 7, 2024
1 parent 7405bd7 commit e91ae51
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { errorTrackingLogic } from './errorTrackingLogic'
import { errorTrackingGroupQuery } from './queries'

export interface ErrorTrackingGroupSceneLogicProps {
fingerprint: string
fingerprint: string[]
}

export enum ErrorGroupTab {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/scenes/error-tracking/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const errorTrackingGroupQuery = ({
filterTestAccounts,
filterGroup,
}: {
fingerprint: string
fingerprint: string[]
dateRange: DateRange
filterTestAccounts: boolean
filterGroup: UniversalFiltersGroup
Expand Down
4 changes: 0 additions & 4 deletions posthog/hogql/visitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ def visit(self, node: AST | None) -> T:
e.start = node.start
e.end = node.end
raise
except AttributeError as meme:
# print(node)
print(meme)
raise


class TraversingVisitor(Visitor[None]):
Expand Down

0 comments on commit e91ae51

Please sign in to comment.