Prints a GTFS object suppressing the class attribute.

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

Arguments

x

A GTFS object.

...

Optional arguments ultimately passed to format.

Value

The GTFS object that was printed, invisibly

Examples

 if (FALSE) {
path = system.file("extdata", 
           "google_transit_nyc_subway.zip", 
           package = "tidytransit")

g = read_gtfs(path)
print(g)
}