Prints a GTFS object suppressing the class attribute and hiding the validation_result attribute, created with validate_gtfs().

# S3 method for class 'tidygtfs'
print(x, ...)

Arguments

x

a tidygtfs object as read by read_gtfs()

...

Optional arguments ultimately passed to format.

Value

The GTFS object that was printed, invisibly

Examples

 if (FALSE) { # \dontrun{
path = system.file("extdata", 
           "nyc_subway.zip", 
           package = "tidytransit")

g = read_gtfs(path)
print(g)
} # }